Skip to content

Add some more UniV3 forks on Sonic #1318

Add some more UniV3 forks on Sonic

Add some more UniV3 forks on Sonic #1318

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-59f354c179f4e7f6d7292acb3d068815c79286d1
- name: Install dependencies
run: git submodule update --recursive --init
- name: Build UniswapV4
run: forge build lib/v4-core/src/PoolManager.sol
- name: Build contracts
run: forge build --skip UniswapV4UnitTest.t.sol
- name: Run tests
run: forge test
env:
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}