diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-06-27 13:53:23 +0200 |
---|---|---|
committer | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-06-27 13:53:23 +0200 |
commit | c2edaf83eb087e710c9b7c7f0f15c87cca3bb9d3 (patch) | |
tree | 34e171c039aad779f45f4a7cc5bdd0fbf4295a1f /.github | |
parent | 0fed864bbf00d21de218d89ad192c9695dfa72db (diff) | |
download | candle-c2edaf83eb087e710c9b7c7f0f15c87cca3bb9d3.tar.gz candle-c2edaf83eb087e710c9b7c7f0f15c87cca3bb9d3.tar.bz2 candle-c2edaf83eb087e710c9b7c7f0f15c87cca3bb9d3.zip |
Ignoring candle-kernels during CI.
Diffstat (limited to '.github')
-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 |