diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6e99e7..9d6ceda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: [ 2.9.4, 2.10.1, 2.11.4 ] + version: [ 2.9.4, 2.10.1, 2.11.4, 2.12.2, 2.13.1 ] steps: - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable @@ -25,7 +25,7 @@ jobs: - run: cargo test --release if: matrix.version == '2.9.4' || matrix.version == '2.10.1' - run: cargo test --release --features allows-excluding-macros - if: matrix.version == '2.11.4' + if: matrix.version == '2.11.4' || matrix.version == '2.12.2' || matrix.version == '2.13.1' rustfmt: name: Check rust formatting diff --git a/crates/cairo-coverage/tests/e2e/general.rs b/crates/cairo-coverage/tests/e2e/general.rs index 9ab1229..06d5e98 100644 --- a/crates/cairo-coverage/tests/e2e/general.rs +++ b/crates/cairo-coverage/tests/e2e/general.rs @@ -28,6 +28,7 @@ fn scarb_template() { } #[test] +#[ignore = "instability (rework test)"] fn complex_calculator() { TestProject::new("complex_calculator") .run()