Skip to content

Commit 6f99e85

Browse files
committed
use action
1 parent 737ae17 commit 6f99e85

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,11 @@ jobs:
2525
- name: test
2626
run: |
2727
pytest --cov=covertable --cov-report=xml
28-
codecov
2928
- name: codecov
3029
uses: codecov/codecov-action@v3
3130
with:
3231
token: ${{ secrets.CODECOV_TOKEN }}
33-
file: ./coverage.xml
32+
file: ./python/coverage.xml
3433
verbose: true
3534

3635
release:

.github/workflows/typescript.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ jobs:
2727
- name: test
2828
run: |
2929
npm test -- --coverage
30-
npm run codecov
30+
# npm run codecov
3131
- name: codecov
3232
uses: codecov/codecov-action@v3
3333
with:
3434
token: ${{ secrets.CODECOV_TOKEN }}
35+
file: ./python/coverage/lcov.info
3536
verbose: true
3637

3738
release:

0 commit comments

Comments
 (0)