Skip to content

Commit

Permalink
Fix test fail reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorstenThiel committed Oct 4, 2024
1 parent 0997c13 commit 544009e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,14 @@ jobs:
dotnet-version: |
8.x
9.x
- name: Restore
run: dotnet restore
working-directory: ./src
- name: Build
run: dotnet build --no-restore
working-directory: ./src
- name: Test
run: dotnet test --verbosity normal --collect:"XPlat Code Coverage"
run: dotnet test --collect:"XPlat Code Coverage" --no-restore --no-build
working-directory: ./src/Fluss.UnitTest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 544009e

Please sign in to comment.