Skip to content

extracts generic functions #823

extracts generic functions

extracts generic functions #823

Workflow file for this run

name: test
on: push
env:
FOUNDRY_PROFILE: ci
jobs:
test:
name: Smart contract tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-d369d2486f85576eec4ca41d277391dfdae21ba7
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install node dependencies
run: yarn --frozen-lockfile
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv
id: test
- name: Run Hardhat tests
run: yarn hardhat test --network hardhat
# - name: Run Slither
# uses: crytic/[email protected]
# with:
# ignore-compile: true
# node-version: 16
# fail-on: none