From f1a35bd0f2a741fd5f8baa1a6d6cb4440a6c140f Mon Sep 17 00:00:00 2001 From: Martin Junghanns Date: Fri, 21 Jul 2023 16:36:37 +0200 Subject: [PATCH] Use nightly toolchain for careful Co-Authored-By: Paul Horn --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fff4f12..ba4c382 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -90,11 +90,11 @@ jobs: - name: Install cargo-careful run: cargo install cargo-careful - name: Run unit tests - run: cargo careful test --no-default-features + run: cargo +nightly careful test --no-default-features - name: Run unit tests - run: cargo careful test --features force_fallback_impl + run: cargo +nightly careful test --features force_fallback_impl - name: Run unit tests - run: cargo careful test --all-features + run: cargo +nightly careful test --all-features build_python: name: Build graph-mate with maturin