Remove the default features from the CI as cuda is not available.

This commit is contained in:
laurent 2023-06-26 20:56:13 +01:00
parent 22da2c7e02
commit de1f612645
1 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: check
args: --no-default-features
test:
name: Test Suite
@ -38,6 +39,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --no-default-features
fmt:
name: Rustfmt
@ -69,4 +71,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --tests --examples -- -D warnings
args: --no-default-features --tests --examples -- -D warnings