Skip to content

refactor(levm): safe mod implementation (#1338) #204

refactor(levm): safe mod implementation (#1338)

refactor(levm): safe mod implementation (#1338) #204

Workflow file for this run

name: CI (L2)
on:
push:
branches: ["main"]
merge_group:
pull_request:
branches: ["**"]
paths:
- "crates/l2/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
RUST_VERSION: 1.80.1
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Rustup toolchain install
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_VERSION }}
- name: Caching
uses: Swatinem/rust-cache@v2
- name: Run L2 integration test
run: |
cd crates/l2
cp .env.example .env
make test