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 507d609 commit 67b7d74Copy full SHA for 67b7d74
.github/workflows/ci.yml
@@ -27,3 +27,25 @@ jobs:
27
- run: cargo check --no-default-features
28
- run: cargo check --no-default-features --features "use_alloc"
29
- run: cargo test
30
+
31
+ # https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
32
+ end-success:
33
+ name: bors build finished
34
+ if: success()
35
+ runs-on: ubuntu-latest
36
+ needs: [msrv,stable]
37
38
+ steps:
39
+ - name: Mark the job as successful
40
+ run: exit 0
41
42
+ end-failure:
43
44
+ if: "!success()"
45
46
47
48
49
+ - name: Mark the job as a failure
50
+ run: exit 1
51
0 commit comments