diff options
Diffstat (limited to '.github/workflows/rust-ci.yml')
-rw-r--r-- | .github/workflows/rust-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 9e0ec89b..5ac88a3e 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -20,7 +20,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: check - args: --no-default-features + args: --no-default-features --workspace --exclude candle-kernels test: name: Test Suite @@ -39,7 +39,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: --no-default-features + args: --no-default-features --workspace --exclude candle-kernels fmt: name: Rustfmt @@ -71,4 +71,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: clippy - args: --no-default-features --tests --examples -- -D warnings + args: --no-default-features --workspace --exclude candle-kernels --tests --examples -- -D warnings |