summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorlaurent <laurent.mazare@gmail.com>2023-06-26 20:56:13 +0100
committerlaurent <laurent.mazare@gmail.com>2023-06-26 20:56:13 +0100
commitde1f612645aa2c7a411fc6659bbfe0c6482766c1 (patch)
tree8970c9855bd1c9f4bff5d30f37da25c563715951 /.github
parent22da2c7e02d8b0364b3b142dfdf3114781c20590 (diff)
downloadcandle-de1f612645aa2c7a411fc6659bbfe0c6482766c1.tar.gz
candle-de1f612645aa2c7a411fc6659bbfe0c6482766c1.tar.bz2
candle-de1f612645aa2c7a411fc6659bbfe0c6482766c1.zip
Remove the default features from the CI as cuda is not available.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml
index bfc68412..9e0ec89b 100644
--- a/.github/workflows/rust-ci.yml
+++ b/.github/workflows/rust-ci.yml
@@ -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