mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-23 05:34:57 +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:
|
rustfmt:
|
||||||
needs: pre_job
|
needs: pre_job
|
||||||
|
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
@ -52,6 +53,7 @@ jobs:
|
|||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
needs: pre_job
|
needs: pre_job
|
||||||
|
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
1
.github/workflows/codecov.yml
vendored
1
.github/workflows/codecov.yml
vendored
@ -25,6 +25,7 @@ jobs:
|
|||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
needs: pre_job
|
needs: pre_job
|
||||||
|
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: xd009642/tarpaulin:develop
|
image: xd009642/tarpaulin:develop
|
||||||
|
Loading…
x
Reference in New Issue
Block a user