[feat] implement CompleteMerkleTree #65
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: tests | |
jobs: | |
check: | |
name: Run All Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.15.1 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run Fuzzed Unit Tests | |
run: forge test --no-match-path src/test/StandardInput.t.sol --fuzz-runs 10000 | |
- name: Run Murky Differential Tests | |
run: | | |
npm --prefix differential_testing/scripts/ install | |
npm --prefix differential_testing/scripts/ run compile | |
forge test --ffi --contracts differential_testing/test/DifferentialTests.t.sol --fuzz-runs 512 | |
- name: Run Complete Differential Tests | |
run: | | |
npm --prefix differential_testing/scripts/ install | |
npm --prefix differential_testing/scripts/ run compile | |
forge test --ffi --contracts differential_testing/test/CompleteDifferentialTests.t.sol --fuzz-runs 512 | |
- name: Run Standard Gas Snapshotting | |
run: forge snapshot --gas-report --ffi --match-path src/test/StandardInput.t.sol |