Skip to content

feat(supersim): configure l1 and l2 vanilla genesis state #7

feat(supersim): configure l1 and l2 vanilla genesis state

feat(supersim): configure l1 and l2 vanilla genesis state #7

Workflow file for this run

name: go-tests
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
merge_group:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FOUNDRY_PROFILE: ci
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.22'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./... -v