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.
1 parent 04d40a6 commit 5518b59Copy full SHA for 5518b59
.github/workflows/ci.yaml
@@ -38,9 +38,16 @@ jobs:
38
components: rustfmt
39
- run: cargo fmt --all --check
40
41
- done:
+ ci-success:
42
name: Complete
43
runs-on: ubuntu-latest
44
needs: [test, no_std, fmt]
45
steps:
46
- run: exit 0
47
+ ci-failed:
48
+ name: Complete
49
+ runs-on: ubuntu-latest
50
+ needs: [test, no_std, fmt]
51
+ if: failure()
52
+ steps:
53
+ - run: exit 1
.github/workflows/pr.yaml
@@ -28,9 +28,16 @@ jobs:
28
29
30
31
32
33
34
needs: [test, fmt]
35
36
37
+ needs: [test, fmt]
0 commit comments