Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/dotnet-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
workflow_dispatch:

Expand Down Expand Up @@ -38,15 +37,12 @@ jobs:
}
}
EOF
- name: Tooling check
run: >
- name: Verify tooling
run: |
dotnet --version
- name: Restore dependencies
run: dotnet restore --verbosity normal
- name: Build
run: dotnet build --no-restore --verbosity normal
- name: Test
run: dotnet test --no-build --verbosity normal
make --version
- name: Run coverage HTML target
run: make coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f
with:
Expand Down
Loading