ci: actually skip ci if duplicate (#611)

Forgot the if line to actually skip ci if duplicate...
This commit is contained in:
Clement Tsang 2021-11-27 05:07:39 -05:00 committed by GitHub
parent 4e083d4a86
commit afcf56e4ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@ jobs:
rustfmt:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
@ -52,6 +53,7 @@ jobs:
clippy:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false

View File

@ -25,6 +25,7 @@ jobs:
coverage:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop