build(deps): bump secp256k1 from 4.0.3 to 4.0.4 #71
This file contains 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: Unit Tests | |
on: [push] | |
jobs: | |
test_hardhat_unit: | |
name: Hardhat | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Common setup | |
uses: ./.github/workflows/setup | |
- name: Run unit tests | |
run: yarn test | |
test_foundry_fuzzing: | |
name: Foundry / Fuzzing & Invariants | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Common setup | |
uses: ./.github/workflows/setup | |
- name: Install foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
# Use a specific version of Foundry in case nightly is broken | |
# https://github.com/foundry-rs/foundry/releases | |
# with: | |
# version: nightly-54d8510c0f2b0f791f4c5ef99866c6af99b7606a | |
- name: Run fuzzing and invariant tests | |
run: forge test -vvv |