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

Commit 8b5de7e

Browse files
committed
1 parent 3015dc5 commit 8b5de7e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,17 @@ 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+
- echo ${{ success() }}
46+
- name: Mark the job as successful
47+
run: exit 0
48+
if: success()
49+
- name: Mark the job as unsuccessful
50+
run: exit 1
51+
if: "!success()"

0 commit comments

Comments
 (0)