We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f15bf commit 9ed7d77Copy full SHA for 9ed7d77
.github/workflows/nodejs.yml
@@ -22,7 +22,13 @@ jobs:
22
- run: npm test
23
- run: ./node_modules/.bin/nyc report --reporter=json
24
- run: mv coverage/coverage-final.json coverage/coverage.json
25
- - run: ./node_modules/.bin/codecov
26
-
+ pytest --cov=./ --cov-report=xml
+ - name: Upload coverage to Codecov
27
+ uses: codecov/codecov-action@v1
28
+ with:
29
+ token: ${{ secrets.CODECOV_TOKEN }}
30
+ file: coverage/coverage.json
31
+ name: codecov
32
+ fail_ci_if_error: true
33
env:
34
CI: true
0 commit comments