Prevent actions duplication on noop merge commits

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

View File

@ -12,6 +12,9 @@ env:
RUSTFLAGS: -Dwarnings
jobs:
pre_ci:
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
unicode:
name: latest Unicode
runs-on: ubuntu-latest
@ -34,6 +37,8 @@ jobs:
test:
name: Rust ${{matrix.rust}}
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
strategy:
fail-fast: false
@ -50,6 +55,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: