chore: fix markdown ms to s conversion (#1167) #3154
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ECC Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
paths: | |
- "crates/circuits/primitives/**" | |
- "crates/vm/**" | |
- "crates/cli/**" | |
- "extensions/ecc/**" | |
- "extensions/native/compiler/**" | |
- "extensions/pairing/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
OPENVM_FAST_TEST: "1" | |
jobs: | |
tests: | |
runs-on: | |
- runs-on=${{ github.run_id }} | |
- runner=64cpu-linux-arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- uses: taiki-e/install-action@nextest | |
- name: Run ecc-circuits crate tests | |
working-directory: extensions/ecc/circuit | |
run: | | |
cargo nextest run --cargo-profile=fast | |
- name: Run ecc integration tests | |
working-directory: extensions/ecc/tests | |
run: | | |
rustup component add rust-src --toolchain nightly-2024-10-30 | |
cargo nextest run --cargo-profile=fast | |
- name: Run pairing-circuits crate tests | |
working-directory: extensions/pairing/circuit | |
run: | | |
RUST_MIN_STACK=8388608 cargo nextest run --cargo-profile=fast | |
- name: Run pairing-guest crate tests | |
working-directory: extensions/pairing/guest | |
run: | | |
cargo nextest run --cargo-profile=fast --features=bn254,bls12_381,halo2curves | |
- name: Run pairing integration tests | |
working-directory: extensions/pairing/tests | |
run: | | |
rustup component add rust-src --toolchain nightly-2024-10-30 | |
RUST_MIN_STACK=8388608 cargo nextest run --cargo-profile=fast |