tests: verifier_utils: implement verifier utils tests #67
Workflow file for this run
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: Devnet Tests | |
on: pull_request | |
jobs: | |
test_devnet: | |
name: test_devnet | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out main branch | |
uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2023-06-02 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: Setup Scarb | |
uses: software-mansion/[email protected] | |
with: | |
scarb-version: "0.5.1" | |
- name: Build Cairo | |
run: scarb -P release build | |
- name: Run tests | |
uses: actions-rs/cargo@v1 | |
env: | |
ARTIFACTS_PATH: ${{ github.workspace }}/target/release | |
RUST_LOG: "tests=debug,katana_core=warn" | |
CAIRO_STEP_LIMIT: 10000000 | |
with: | |
command: test | |
args: -p tests --all-targets --lib --verbose -- --nocapture |