Reenable pyo3 in the workspace list (#170)

* Enable pyo3 back.

* Adapt the CI.
This commit is contained in:
Laurent Mazare
2023-07-14 19:54:38 +01:00
committed by GitHub
parent d1f6fad84a
commit d1f5d44c04
3 changed files with 6 additions and 5 deletions

View File

@ -24,7 +24,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: check
args: --no-default-features --workspace --exclude candle-kernels
args: --workspace
test:
name: Test Suite
@ -43,7 +43,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --no-default-features --workspace --exclude candle-kernels
args: --workspace
fmt:
name: Rustfmt
@ -75,4 +75,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --no-default-features --workspace --exclude candle-kernels --tests --examples -- -D warnings
args: --workspace --tests --examples -- -D warnings