Prevent actions duplication on noop merge commits

This commit is contained in:
David Tolnay 2022-12-31 12:45:33 -08:00
parent c5ce7250fa
commit 0d23ebc77a
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -12,8 +12,13 @@ env:
RUSTFLAGS: -Dwarnings
jobs:
pre_ci:
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
test:
name: Rust ${{matrix.rust}}
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
strategy:
fail-fast: false
@ -35,6 +40,8 @@ jobs:
msrv:
name: Rust 1.31.0
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
@ -58,6 +65,8 @@ jobs:
miri:
name: Miri
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
timeout-minutes: 45
steps: