Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 0f7d79b

Browse files
committed
1 parent 3015dc5 commit 0f7d79b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,16 @@ jobs:
3535

3636
- name: Run tests
3737
run: sh ci/run.sh ${{ matrix.os }}
38+
39+
# https://forge.rust-lang.org/infra/docs/bors.html#adding-a-new-repository-to-bors
40+
build_result:
41+
name: bors build finished
42+
runs-on: ubuntu-latest
43+
needs: ["build_and_test"]
44+
steps:
45+
- name: Mark the job as successful
46+
run: exit 0
47+
if: success()
48+
- name: Mark the job as unsuccessful
49+
run: exit 1
50+
if: "!success()"

0 commit comments

Comments
 (0)