2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-25 17:56:49 +00:00

ci: Add no-std check

This commit is contained in:
k-nasa 2020-01-16 10:37:22 +09:00
parent 3d32fd81f4
commit 41f114d9fe

View file

@ -40,6 +40,7 @@ jobs:
with:
command: check
args: --features unstable --all --bins --examples --tests
- name: check bench
uses: actions-rs/cargo@v1
if: matrix.rust == 'nightly'
@ -53,6 +54,12 @@ jobs:
command: check
args: --no-default-features --features std
- name: check no_std
uses: actions-rs/cargo@v1
with:
command: check
args: --no-default-features --features no-std
- name: check attributes
uses: actions-rs/cargo@v1
with: