Add Sepolia deployment 7 #1161
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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'} |