Skip to content

Commit 2013cab

Browse files
committed
Fix workflow
1 parent c63df18 commit 2013cab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/wf-build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ jobs:
6363

6464
- name: Run test .NET Core 1.1
6565
working-directory: QRCoderTests
66-
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
66+
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
6767

6868
- name: Run test .NET Core 2.0
6969
working-directory: QRCoderTests
70-
run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
70+
run: dotnet test -c Release -f netcoreapp2.0 --nologo --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
7171

7272
- name: Run test .NET 5.0
7373
working-directory: QRCoderTests
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Run API approval tests
8989
working-directory: QRCoderApiTests
90-
run: dotnet test -c Release -f net6.0 --nologo --no-build
90+
run: dotnet test -c Release --nologo --no-build
9191

9292
clean:
9393
needs: [build, test]

0 commit comments

Comments
 (0)