Skip to content

chore: update periphery #157

chore: update periphery

chore: update periphery #157

Workflow file for this run

name: test
on:
push:
branches:
- master
- develop
pull_request:
jobs:
test:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@c7450ba673e133f5ee30098b3b54f444d3a2ca2d # v1
with:
version: nightly
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv --fork-url ${{ secrets.ETH_RPC_URL }}
id: test