Skip to content

Commit 3e24e0b

Browse files
committed
ci: fix no-std check
1 parent 0d90cb0 commit 3e24e0b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,15 @@ jobs:
8080
- uses: actions/checkout@master
8181

8282
- name: setup
83-
run: rustup target add thumbv7m-none-eabi
83+
run: |
84+
rustup default nightly
85+
rustup target add thumbv7m-none-eabi
8486
8587
- name: check no_std
8688
uses: actions-rs/cargo@v1
8789
with:
8890
command: check
89-
args: --no-default-features --features alloc --target thumbv7m-none-eabi -v
91+
args: --no-default-features --features alloc --target thumbv7m-none-eabi -Z avoid-dev-deps
9092

9193
check_fmt_and_docs:
9294
name: Checking fmt and docs

0 commit comments

Comments
 (0)