Skip to content

Commit 92386ea

Browse files
Merge branch 'main' into copilot/fix-sonarcloud-coverage
2 parents 33267d7 + 822498c commit 92386ea

4 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ "**" ]
66
pull_request:
77
branches: [ "main" ]
8+
workflow_dispatch:
89

910
jobs:
1011
build:

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
workflow_dispatch:
89

910
jobs:
1011
sonarcloud:

src/SLNX-validator/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public static async Task<int> Main(string[] args)
2121
var services = new ServiceCollection()
2222
.AddSlnxValidator()
2323
.AddSingleton<ValidationCollector>()
24-
.AddSingleton<ValidationReporter>()
2524
.AddSingleton<ValidatorRunner>()
2625
.BuildServiceProvider();
2726

src/SLNX-validator/ValidationReporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace JulianVerdurmen.SlnxValidator;
44

5-
internal sealed class ValidationReporter
5+
internal static class ValidationReporter
66
{
77
public static async Task Report(IReadOnlyList<FileValidationResult> results)
88
{

0 commit comments

Comments
 (0)