Ignoring candle-kernels during CI.

This commit is contained in:
Nicolas Patry
2023-06-27 13:53:23 +02:00
parent 0fed864bbf
commit c2edaf83eb
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -2,5 +2,6 @@
members = [
"candle-core",
"candle-kernels",
]