fix: honor pranks during contract creation #37
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
name: Test external projects | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
include: | |
- repo: "morpho-org/morpho-data-structures" | |
dir: "morpho-data-structures" | |
cmd: "halmos --function testProve --loop 4 --symbolic-storage --test-parallel --solver-parallel --solver-timeout-assertion 60000" | |
branch: "" | |
- repo: "a16z/cicada" | |
dir: "cicada" | |
cmd: "halmos -v -st --contract LibUint1024Test --function testProve --loop 256 --test-parallel --solver-parallel --solver-timeout-assertion 1000000" | |
branch: "" | |
- repo: "a16z/cicada" | |
dir: "cicada" | |
cmd: "halmos -v -st --contract LibPrimeTest --function testProve --loop 256 --test-parallel" | |
branch: "" | |
- repo: "farcasterxyz/contracts" | |
dir: "farcaster-contracts" | |
cmd: "halmos -v -st --test-parallel --solver-parallel --solver-timeout-assertion 60000" | |
branch: "test/halmos" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: halmos | |
submodules: recursive | |
- name: Checkout external repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ matrix.repo }} | |
path: ${{ matrix.dir }} | |
ref: ${{ matrix.branch }} | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: python -m pip install --upgrade pip | |
- name: Install Halmos | |
run: python -m pip install -e ./halmos | |
- name: Test external repo | |
run: ${{ matrix.cmd }} | |
working-directory: ${{ matrix.dir }} |