Skip to content

Add Sepolia deployment 7 #1161

Add Sepolia deployment 7

Add Sepolia deployment 7 #1161

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: install Foundry
uses: foundry-rs/foundry-toolchain@v1.6.0
with: {version: v1.5.1}
- name: check formatting
run: forge fmt --check
- name: make fuzz tests on pushes extensive
if: ${{ github.event_name == 'push' }}
run: echo FOUNDRY_FUZZ_RUNS=50000 >> $GITHUB_ENV
- name: run tests
run: forge test --deny warnings
- name: run Slither
uses: crytic/slither-action@v0.4.2
with: {slither-version: '0.11.5'}