Skip to content

Commit

Permalink
PIP CLI test
Browse files Browse the repository at this point in the history
  • Loading branch information
smeubank committed Oct 11, 2024
1 parent dcf9abe commit 7c65a7b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ jobs:
files: ./coverage.xml
flags: backend

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

0 comments on commit 7c65a7b

Please sign in to comment.