Skip to content

Commit

Permalink
fix: do the raw
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Feb 5, 2024
1 parent a0bcfab commit 8a12438
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,22 @@ jobs:
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov app

- name: Upload coverage to Codecov using CLI
run: |
curl -Os https://cli.codecov.io/v0.4.6/linux/codecov
chmod u+x codecov
./codecov create-commit -Z
./codecov create-report -Z
./codecov do-upload -Z
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 8a12438

Please sign in to comment.