Skip to content

Commit 3a59616

Browse files
fix: see if it works on CI
1 parent 6cc5e39 commit 3a59616

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

+7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ jobs:
1616
run: pip install -r requirements.txt
1717
- name: Run tests and collect coverage
1818
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+
1926
- name: Upload coverage to Codecov
2027
uses: codecov/codecov-action@v4
2128
with:

0 commit comments

Comments
 (0)