mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2025-02-21 09:03:31 +00:00
Prevent actions duplication on noop merge commits
This commit is contained in:
parent
6f745adf72
commit
99eef7cc2a
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -9,8 +9,13 @@ permissions:
|
|||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
pre_ci:
|
||||||
|
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: ${{matrix.name || format('Rust {0}', matrix.rust)}}
|
name: ${{matrix.name || format('Rust {0}', matrix.rust)}}
|
||||||
|
needs: pre_ci
|
||||||
|
if: needs.pre_ci.outputs.continue
|
||||||
runs-on: ${{matrix.os || 'ubuntu'}}-latest
|
runs-on: ${{matrix.os || 'ubuntu'}}-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user