File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments