mirror of
https://gitee.com/openharmony/third_party_rust_unicode-ident
synced 2024-11-26 17:21:06 +00:00
Prevent actions duplication on noop merge commits
This commit is contained in:
parent
600ff66352
commit
d23c2d64dd
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user