diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-07-14 19:54:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 19:54:38 +0100 |
commit | d1f5d44c04d084ac96227096bd8a1f7791201b64 (patch) | |
tree | 67bfaa3473161d57096a648282f41b4f0a255609 /.github | |
parent | d1f6fad84a5dc372f9541887df9b8faa5de44d66 (diff) | |
download | candle-d1f5d44c04d084ac96227096bd8a1f7791201b64.tar.gz candle-d1f5d44c04d084ac96227096bd8a1f7791201b64.tar.bz2 candle-d1f5d44c04d084ac96227096bd8a1f7791201b64.zip |
Reenable pyo3 in the workspace list (#170)
* Enable pyo3 back.
* Adapt the 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 1f5b8c2e..2ca53b23 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -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 |