Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions crates/cairo-coverage/tests/e2e/general.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ fn scarb_template() {
}

#[test]
#[ignore = "instability (rework test)"]
fn complex_calculator() {
TestProject::new("complex_calculator")
.run()
Expand Down
Loading