mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-22 21:24:49 +02:00
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
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
1
.github/workflows/codecov.yml
vendored
1
.github/workflows/codecov.yml
vendored
@ -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…
x
Reference in New Issue
Block a user