Skip to content

Commit

Permalink
fix : codecov upload/download artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
0xsharma committed Oct 3, 2023
1 parent 81172e8 commit 1938475
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ jobs:

- name: Test
run: make test

- uses: actions/upload-artifact@v2
with:
name: unitTest-coverage
path: ./cover.out

#- name: Data race tests
# run: make test-race
Expand Down Expand Up @@ -161,6 +166,12 @@ jobs:
runs-on: ${{ matrix.os }}
needs: [unit-tests, integration-tests]
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: unitTest-coverage
path: ./cover.out

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit 1938475

Please sign in to comment.