Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
codecov:
Comment thread
limakzi marked this conversation as resolved.
notify:
manual_trigger: true # needed for codecov-notify CI step

coverage:
precision: 2
round: down
Expand All @@ -14,8 +18,6 @@ coverage:
default:
informational: true

comment: false

ignore:
- "extern"
- "hpcgap/extern"
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,18 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}

codecov-notify:
name: Finalize Codecov notifications
runs-on: ubuntu-slim
needs: test
if: ${{ always() }}

steps:
- name: "Send Codecov notifications"
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
run_command: send-notifications

cross_compile:
# The host should always be linux
Expand Down
Loading