integration test quoter quote exact output single #79
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: Fuzz Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out github repository | |
- uses: actions/checkout@v3 | |
- name: Set up python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install python dependencies | |
run: pip install -r requirements.txt | |
- name: Install ape plugins | |
run: ape plugins install . | |
- name: Compile contracts | |
run: ape compile --force --size | |
- name: Output current installation | |
run: pip freeze | |
- name: Install foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run tests | |
run: ape test -s -m "fuzzing" --cache-clear | |
timeout-minutes: 15 |