Skip to content

Commit 67b7d74

Browse files
authored
1 parent 507d609 commit 67b7d74

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,25 @@ jobs:
2727
- run: cargo check --no-default-features
2828
- run: cargo check --no-default-features --features "use_alloc"
2929
- 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+
name: bors build finished
44+
if: "!success()"
45+
runs-on: ubuntu-latest
46+
needs: [msrv,stable]
47+
48+
steps:
49+
- name: Mark the job as a failure
50+
run: exit 1
51+

0 commit comments

Comments
 (0)