Skip to content

Commit

Permalink
use action
Browse files Browse the repository at this point in the history
  • Loading branch information
righ committed Feb 19, 2023
1 parent 737ae17 commit 6f99e85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@ jobs:
- name: test
run: |
pytest --cov=covertable --cov-report=xml
codecov
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
file: ./python/coverage.xml
verbose: true

release:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/typescript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ jobs:
- name: test
run: |
npm test -- --coverage
npm run codecov
# npm run codecov
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./python/coverage/lcov.info
verbose: true

release:
Expand Down

0 comments on commit 6f99e85

Please sign in to comment.