Skip to content

Commit 7c65a7b

Browse files
committed
PIP CLI test
1 parent dcf9abe commit 7c65a7b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ jobs:
3131
files: ./coverage.xml
3232
flags: backend
3333

34-
- name: Upload backend coverage to Codecov via CLI
34+
- name: Upload backend coverage to Codecov via PIP CLI
3535
run: |
36-
curl -Os https://cli.codecov.io/latest/linux/codecov
37-
chmod +x codecov
38-
./codecov --verbose upload-process --disable-search -t ${{ secrets.CODECOV_TOKEN }} -f coverage.xml
36+
pip install codecov-cli
37+
codecovcli --verbose upload-process --disable-search -n 'backend-job'-${{ github.run_id }} -F backend -f coverage.xml -t ${{ secrets.CODECOV_TOKEN }}
3938
4039
- name: Set up Node.js
4140
uses: actions/setup-node@v2

0 commit comments

Comments
 (0)