We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac0b695 + 5a97379 commit 9b4acd7Copy full SHA for 9b4acd7
.github/workflows/ci.yaml
@@ -43,9 +43,13 @@ jobs:
43
components: rustfmt
44
- run: cargo fmt --all --check
45
46
- done:
+ ci-status:
47
name: Complete
48
runs-on: ubuntu-latest
49
needs: [test, no_std, fmt]
50
+ if: always()
51
steps:
- - run: exit 0
52
+ - if: ${{ success() }}
53
+ run: exit 0
54
+ - if: ${{ !success() }}
55
+ run: exit 1
.github/workflows/pr.yaml
@@ -28,9 +28,13 @@ jobs:
28
29
30
31
32
33
34
needs: [test, fmt]
35
36
37
38
39
40
0 commit comments