Skip to content

Commit 798ea3c

Browse files
committed
Merge #1354 (replace CodeClimate with CodeCov)
2 parents 81d368a + b650f8d commit 798ea3c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/validate-python.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,11 @@ jobs:
8585
- name: Collect static files
8686
run: |
8787
~/venv/current/bin/python3 ./manage.py collectstatic --noinput
88-
- name: Download CodeClimate test reporter utility
89-
run: |
90-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
91-
chmod +x ./cc-test-reporter
9288
- name: Run automated tests
9389
run: |
94-
./cc-test-reporter before-build
9590
~/venv/current/bin/coverage run --source='.' manage.py test --noinput
9691
~/venv/current/bin/coverage xml
97-
./cc-test-reporter after-build --coverage-input-type coverage.py --exit-code $?
92+
- name: Upload coverage reports to Codecov
93+
uses: codecov/codecov-action@v3
94+
with:
95+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)