Skip to content

Fixing _doCheckValueType #1890

Fixing _doCheckValueType

Fixing _doCheckValueType #1890

Workflow file for this run

env:
FORCE_COLOR: true
on:
push:
branches:
- main
pull_request:
paths:
- "packages/contracts/**"
name: foundry-test
jobs:
check:
name: Foundry Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v2
with:
node-version: 14.x
- id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Foundry Test
working-directory: ./packages/contracts/
run: forge test -vv ${{ github.base_ref == 'main' && '--fuzz-runs 200' || '' }}
env:
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}