Skip to content

feat: ✨ TokenFactoryV3 #44

feat: ✨ TokenFactoryV3

feat: ✨ TokenFactoryV3 #44

Workflow file for this run

name: test
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
env:
FOUNDRY_PROFILE: ci
FOUNDRY_FUZZ_RUNS: 1024
FOUNDRY_FUZZ_MAX_TEST_REJECTS: 131072
BASE_KEY: ${{ secrets.BASE_KEY }}
BASE_SEPOLIA_KEY: ${{ secrets.BASE_SEPOLIA_KEY }}
SEPOLIA_KEY: ${{ secrets.SEPOLIA_KEY }}
OP_KEY: ${{ secrets.OP_KEY }}
POLYGON_KEY: ${{ secrets.POLYGON_KEY }}
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: 🍴 🔵
run: forge test -vvv --rpc-url "https://base-mainnet.g.alchemy.com/v2/$BASE_KEY"
# - name: 🍴 🔵 🐬
# run: forge test -vvv --rpc-url "https://base-sepolia.g.alchemy.com/v2/$BASE_SEPOLIA_KEY"
- name: 🍴 🐬
run: forge test -vvv --rpc-url "https://eth-sepolia.g.alchemy.com/v2/$SEPOLIA_KEY"
- name: 🍴 🔴
run: forge test -vvv --rpc-url "https://opt-mainnet.g.alchemy.com/v2/$OP_KEY"
- name: 🍴 🟣
run: forge test -vvv --rpc-url "https://polygon-mainnet.g.alchemy.com/v2/$POLYGON_KEY"
id: test