From 70f4e8c2918c1db10642ed1339ca05c585bbaf20 Mon Sep 17 00:00:00 2001 From: Tony Troeff Date: Wed, 3 Sep 2025 21:53:31 +0300 Subject: [PATCH 1/3] Increased the `TryAtSoftware.CleanTests` package version to 1.1.0 --- .../TryAtSoftware.CleanTests.Core.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj b/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj index b708035..4f75bc3 100644 --- a/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj +++ b/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj @@ -8,7 +8,7 @@ false TryAtSoftware.CleanTests - 1.1.0-alpha.3 + 1.1.0 Tony Troeff https://github.com/TryAtSoftware/CleanTests MIT From 5f1091daa148d72d109030baad2ec7b4a919f997 Mon Sep 17 00:00:00 2001 From: Tony Troeff Date: Wed, 3 Sep 2025 22:01:05 +0300 Subject: [PATCH 2/3] Fix `CI` workflow. --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5f00d01..f202442 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -61,7 +61,7 @@ jobs: run: dotnet tool update dotnet-sonarscanner --tool-path ./.sonar/scanner - name: Start analyzation with SonarCloud - run: ./.sonar/scanner/dotnet-sonarscanner begin /k:"TryAtSoftware_CleanTests" /o:"tryatsoftware" /d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" + run: ./.sonar/scanner/dotnet-sonarscanner begin /k:"TryAtSoftware_CleanTests" /o:"tryatsoftware" /d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" - name: Restore dependencies run: dotnet restore From 7c1555e81cb11d016f9cdf6f6b7cc3596fea5ce9 Mon Sep 17 00:00:00 2001 From: Tony Troeff Date: Wed, 3 Sep 2025 22:17:15 +0300 Subject: [PATCH 3/3] Fix `CI` workflow. --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f202442..071c4d1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -61,7 +61,7 @@ jobs: run: dotnet tool update dotnet-sonarscanner --tool-path ./.sonar/scanner - name: Start analyzation with SonarCloud - run: ./.sonar/scanner/dotnet-sonarscanner begin /k:"TryAtSoftware_CleanTests" /o:"tryatsoftware" /d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" + run: ./.sonar/scanner/dotnet-sonarscanner begin /k:"TryAtSoftware_CleanTests" /o:"tryatsoftware" /d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml" /d:sonar.login="${{ env.SONAR_TOKEN }}" - name: Restore dependencies run: dotnet restore @@ -73,4 +73,4 @@ jobs: run: dotnet test --no-build --configuration "${{ env.CONFIGURATION }}" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover - name: Finalize analyzation with SonarCloud - run: ./.sonar/scanner/dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}" + run: ./.sonar/scanner/dotnet-sonarscanner end /d:sonar.login="${{ env.SONAR_TOKEN }}"