From ae9b3678df5f97934297e6ad4b6f8ee3dedcab8a Mon Sep 17 00:00:00 2001 From: Valentin Tolmer Date: Thu, 31 Mar 2022 15:51:12 +0200 Subject: [PATCH] github: Run Codecov even if builds should be skipped --- .github/workflows/rust.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e46f210..a912f86 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -11,7 +11,7 @@ env: jobs: pre_job: - # continue-on-error: true # Uncomment once integration is finished + continue-on-error: true runs-on: ubuntu-latest # Map a step output to a job output outputs: @@ -97,7 +97,6 @@ jobs: coverage: name: Code coverage needs: pre_job - if: ${{ needs.pre_job.outputs.should_skip != 'true' }} runs-on: ubuntu-latest steps: - name: Checkout sources