ci: build workflow - rename cov results file

This commit is contained in:
Nicolas Giard 2022-03-24 16:40:44 -04:00 committed by GitHub
parent 79bcc6448e
commit 0821260cc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,6 +122,10 @@ jobs:
./ietf/manage.py check
echo "Running tests..."
./ietf/manage.py test --settings=settings_sqlitetest --failfast
- name: Rename Coverage Results
if: ${{ always() }}
run: |
mv latest-coverage.json coverage.json
- name: Upload Coverage Results to Codecov