Skip to content

Commit

Permalink
Merge #374
Browse files Browse the repository at this point in the history
374: Fix CI success conditions r=spookyvision a=jonas-schievink

The `clippy` and `rustfmt` jobs were missing

Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
  • Loading branch information
bors[bot] and jonas-schievink authored Feb 9, 2021
2 parents bb3b119 + 616d94d commit ffd7bea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
shell: bash
- name: Run all unit tests on the host
run: cargo test --workspace --features unstable-test

no-std:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -158,14 +159,16 @@ jobs:
working-directory: firmware/qemu
run: ./test.sh

# Refs: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
# Refs: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
# bors.tech integration
ci-success:
name: ci
if: ${{ success() }}
needs:
- test
- no-std
- clippy
- rustfmt
- mdbook
- qemu
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ difference = "2.0.0"
log = { version = "0.4.13", features = ["std"] }

[features]
unstable = []
unstable = []

0 comments on commit ffd7bea

Please sign in to comment.