fix: manager ignite for native ETH out, descriptor health factor #172
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: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ApeWorX/[email protected] | |
with: | |
python-version: '3.10' | |
ape-version-pin: "==0.6.26" | |
ape-plugins-list: 'solidity==0.6.9 foundry==0.6.12' | |
- 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 "not fuzzing and not integration" --cache-clear | |
timeout-minutes: 15 |