Move coverage from checks to test

This commit is contained in:
Filipe PINTO 2024-04-08 10:33:23 +02:00 committed by fpinto
parent 91067f9545
commit 1382e227ec
No known key found for this signature in database
GPG Key ID: F4F06B068FB00692
2 changed files with 2 additions and 4 deletions

View File

@ -65,10 +65,6 @@ jobs:
if: always() if: always()
run: bin/check/generated.sh run: bin/check/generated.sh
- name: Coverage
if: always()
run: bin/check/coverage.sh
- name: Rustfmt - name: Rustfmt
if: always() if: always()
run: bin/check/rustfmt.sh run: bin/check/rustfmt.sh

View File

@ -87,6 +87,8 @@ jobs:
echo "PATH=${PWD}/target/release:$PATH" >> "${GITHUB_ENV}" echo "PATH=${PWD}/target/release:$PATH" >> "${GITHUB_ENV}"
- name: Integration Tests - name: Integration Tests
run: bin/test/test_integ.sh run: bin/test/test_integ.sh
- name: Coverage
run: bin/check/coverage.sh
- name: Archive production artifacts - name: Archive production artifacts
uses: actions/upload-artifact@v4.3.1 uses: actions/upload-artifact@v4.3.1
if: ${{ always() }} if: ${{ always() }}