Skip to content

Commit

Permalink
more bors tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jswrenn committed Dec 10, 2020
1 parent 507d609 commit 67b7d74
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -27,3 +27,25 @@ jobs:
- run: cargo check --no-default-features
- run: cargo check --no-default-features --features "use_alloc"
- run: cargo test

# https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
end-success:
name: bors build finished
if: success()
runs-on: ubuntu-latest
needs: [msrv,stable]

steps:
- name: Mark the job as successful
run: exit 0

end-failure:
name: bors build finished
if: "!success()"
runs-on: ubuntu-latest
needs: [msrv,stable]

steps:
- name: Mark the job as a failure
run: exit 1

0 comments on commit 67b7d74

Please sign in to comment.