Skip to content

Commit

Permalink
add codecov pipeline step
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Ivanov committed Dec 15, 2023
1 parent 4f36090 commit 746bab5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,12 @@ jobs:
go.sum
- name: Test unit
run: |
make test-unit
make test-unit-cover
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage.txt
fail_ci_if_error: true
verbose: true

0 comments on commit 746bab5

Please sign in to comment.