Skip to content

Commit

Permalink
ci: fix no-std check
Browse files Browse the repository at this point in the history
  • Loading branch information
k-nasa committed Feb 1, 2020
1 parent 0d90cb0 commit 3e24e0b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,15 @@ jobs:
- uses: actions/checkout@master

- name: setup
run: rustup target add thumbv7m-none-eabi
run: |
rustup default nightly
rustup target add thumbv7m-none-eabi
- name: check no_std
uses: actions-rs/cargo@v1
with:
command: check
args: --no-default-features --features alloc --target thumbv7m-none-eabi -v
args: --no-default-features --features alloc --target thumbv7m-none-eabi -Z avoid-dev-deps

check_fmt_and_docs:
name: Checking fmt and docs
Expand Down

0 comments on commit 3e24e0b

Please sign in to comment.