Skip to content

Commit

Permalink
CI: add Codecov token
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jun 15, 2024
1 parent d50d8e4 commit 2100742
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
only-needed: true
- name: "Generate source coverage reports by running gcov"
run: find . -type f -name '*.gcno' -exec gcov -pb {} +
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

# The Cygwin job
test-cygwin:
Expand All @@ -72,7 +74,9 @@ jobs:
- name: "Generate source coverage reports by running gcov"
run: find . -type f -name '*.gcno' -exec gcov -pb {} +
shell: bash
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: "Setup tmate session"
uses: mxschmitt/action-tmate@v3
if: ${{ failure() }}
Expand Down

0 comments on commit 2100742

Please sign in to comment.