File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
- name : Set up .NET
11
11
uses : actions/setup-dotnet@v4
12
12
with :
13
- dotnet-version : 8
13
+ dotnet-version : 9
14
14
- name : Run tests
15
15
run : dotnet test
16
16
env :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace Belin.Akismet;
6
6
/// Represents the author of a comment.
7
7
/// </summary>
8
8
/// <param name="ipAddress">The author's IP address.</param>
9
- public class Author ( string ipAddress ) {
9
+ public sealed class Author ( string ipAddress ) {
10
10
11
11
/// <summary>
12
12
/// The author's mail address. If you set it to <c>"akismet-guaranteed-spam@example.com"</c>, Akismet will always return <see langword="true"/>.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace Belin.Akismet;
6
6
/// Represents the front page or home URL transmitted when making requests.
7
7
/// </summary>
8
8
/// <param name="url">The blog or site URL.</param>
9
- public class Blog ( string url ) {
9
+ public sealed class Blog ( string url ) {
10
10
11
11
/// <summary>
12
12
/// The character encoding for the values included in comments.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ namespace Belin.Akismet;
4
4
/// Represents a comment submitted by an author.
5
5
/// </summary>
6
6
/// <param name="author">The comment's author.</param>
7
- public class Comment ( Author author ) {
7
+ public sealed class Comment ( Author author ) {
8
8
9
9
/// <summary>
10
10
/// The comment's author.
You can’t perform that action at this time.
0 commit comments