ci: actually skip ci if duplicate (#611)
Forgot the if line to actually skip ci if duplicate...
This commit is contained in:
parent
4e083d4a86
commit
afcf56e4ae
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue