Skip to content

Feat: test suite

Feat: test suite #96

Workflow file for this run

name: Tests
on:
push:
branches: ["main", "develop", "community-edition"]
pull_request:
branches: ["main", "develop", "community-edition"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest-m
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run halo2-base tests
working-directory: "halo2-base"
run: |
cargo test
- name: Run halo2-ecc tests
working-directory: "halo2-ecc"
run: |
mv configs/bn254/bench_fixed_msm.t.config configs/bn254/bench_fixed_msm.config
mv configs/bn254/bench_msm.t.config configs/bn254/bench_msm.config
mv configs/bn254/bench_pairing.t.config configs/bn254/bench_pairing.config
cargo test --jobs=1
- name: Run zkevm-keccak tests
working-directory: "hashes/zkevm-keccak"
run: |
cargo test --jobs=1
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
override: false
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
- name: Run fmt
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all -- -D warnings