mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
chore(ci): Ensure CI job always runs
This commit is contained in:
parent
3278d49444
commit
d634de649f
1 changed files with 5 additions and 3 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -23,11 +23,13 @@ jobs:
|
||||||
permissions:
|
permissions:
|
||||||
contents: none
|
contents: none
|
||||||
name: CI
|
name: CI
|
||||||
needs: [test, msrv, docs, rustfmt, clippy]
|
needs: [test, msrv, lockfile, docs, rustfmt, clippy]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: "always()"
|
||||||
steps:
|
steps:
|
||||||
- name: Done
|
- name: Failed
|
||||||
run: exit 0
|
run: exit 1
|
||||||
|
if: "contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped')"
|
||||||
test:
|
test:
|
||||||
name: Test
|
name: Test
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Reference in a new issue