Add Codecov upload step to GitHub Actions
Added step to upload coverage reports to Codecov.
This commit is contained in:
parent
adff8e9c07
commit
26e2880dde
1 changed files with 5 additions and 0 deletions
5
.github/workflows/go.yml
vendored
5
.github/workflows/go.yml
vendored
|
|
@ -27,3 +27,8 @@ jobs:
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: ~/go/bin/task test
|
run: ~/go/bin/task test
|
||||||
|
|
||||||
|
- name: Upload coverage reports to Codecov
|
||||||
|
uses: codecov/codecov-action@v5
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue