From 2013caba8d2c15071da480552bd89cad20ef33f9 Mon Sep 17 00:00:00 2001 From: Shane32 Date: Sat, 27 Apr 2024 00:47:08 -0400 Subject: [PATCH] Fix workflow --- .github/workflows/wf-build-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wf-build-test.yml b/.github/workflows/wf-build-test.yml index b5dac4b0..f38dd9eb 100644 --- a/.github/workflows/wf-build-test.yml +++ b/.github/workflows/wf-build-test.yml @@ -63,11 +63,11 @@ jobs: - name: Run test .NET Core 1.1 working-directory: QRCoderTests - run: dotnet test -c Release -f netcoreapp1.1 --nologo # No coverage for .NETCORE 1.1 because Coverlet doesn't support it https://github.com/coverlet-coverage/coverlet/issues/466 + run: dotnet test -c Release -f netcoreapp1.1 --nologo --no-build # No coverage for .NETCORE 1.1 because Coverlet doesn't support it https://github.com/coverlet-coverage/coverlet/issues/466 - name: Run test .NET Core 2.0 working-directory: QRCoderTests - run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover + run: dotnet test -c Release -f netcoreapp2.0 --nologo --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=opencover - name: Run test .NET 5.0 working-directory: QRCoderTests @@ -87,7 +87,7 @@ jobs: - name: Run API approval tests working-directory: QRCoderApiTests - run: dotnet test -c Release -f net6.0 --nologo --no-build + run: dotnet test -c Release --nologo --no-build clean: needs: [build, test]