Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cc5e39 commit 3a59616Copy full SHA for 3a59616
.github/workflows/ci.yml
@@ -16,6 +16,13 @@ jobs:
16
run: pip install -r requirements.txt
17
- name: Run tests and collect coverage
18
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
19
+ - name: Run upload
20
+ run: |
21
+ curl -Os https://cli.codecov.io/latest/linux/codecov
22
+ chmod +x codecov
23
+ ./codecov -v create-commit -t ${{ secrets.CODECOV_TOKEN }}
24
+ ./codecov -v create-report -t ${{ secrets.CODECOV_TOKEN }}
25
+
26
- name: Upload coverage to Codecov
27
uses: codecov/codecov-action@v4
28
with:
0 commit comments