Skip to content

feat: add multi-mmr logic #43

feat: add multi-mmr logic

feat: add multi-mmr logic #43

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- uses: pnpm/action-setup@v4
with:
version: 8
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Setup
run: |
make cairo-install && make cairo1-install
id: setup
- name: Cairo run
run: |
make cairo-run
id: script
- name: Run Forge tests
run: |
source venv/bin/activate && forge test -vvv
id: test