Skip to content

chore: update foundry tag in ci #44

chore: update foundry tag in ci

chore: update foundry tag in ci #44

Workflow file for this run

name: CI
on:
push:
branches:
- v[1-9]*
- audit/*
- dev
pull_request:
branches:
- v[1-9]*
- audit/*
- dev
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-563e0624ba5a4a317202b4c9bc1d0120ed7c49f0
- name: Display config
run: forge config
- name: Compile contracts
run: make artifacts
- name: Generate interfaces
run: make interfaces
- name: Run tests
run: make test
env:
ETHEREUM_NODE_MAINNET: ${{ secrets.ETHEREUM_NODE_MAINNET }}
ETHEREUM_NODE_POLYGON: ${{ secrets.ETHEREUM_NODE_POLYGON }}
- name: Check linting & formatting
run: make lint