Skip to content

final smolquants report #76

final smolquants report

final smolquants report #76

name: Integration Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
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 alchemy==0.6.2 etherscan==0.6.7'
- 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
env:
WEB3_ALCHEMY_PROJECT_ID: ${{ secrets.WEB3_ALCHEMY_PROJECT_ID }}
run: ape test -s -m "integration" --network ethereum:mainnet-fork:foundry --cache-clear
timeout-minutes: 15