Check --all-targets in CI (#1395)

This commit is contained in:
Emil Ernerfeldt 2023-02-08 09:35:01 +01:00 committed by GitHub
parent 8d6c2580f4
commit 4721a0a680
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,19 +51,19 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: check
args: --locked --all-features
args: --locked --all-features --all-targets
- name: Check default features
uses: actions-rs/cargo@v1
with:
command: check
args: --locked
args: --locked --all-targets
- name: Check no default features
uses: actions-rs/cargo@v1
with:
command: check
args: --locked --no-default-features --lib
args: --locked --no-default-features --lib --all-targets
- name: Test doc-tests
uses: actions-rs/cargo@v1