Skip to content

Merge pull request #17 from curvefi/feat/redeploy_zksync #138

Merge pull request #17 from curvefi/feat/redeploy_zksync

Merge pull request #17 from curvefi/feat/redeploy_zksync #138

name: integration-tests-boa
on: [push]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RPC_ETHEREUM: ${{ secrets.RPC_ETHEREUM }}
jobs:
boa-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Compiler Installations
uses: actions/cache@v2
with:
path: |
~/.vvm
key: compiler-cache-${{ hashFiles('**/requirements.txt') }}
- name: Setup Python 3.10.4
uses: actions/setup-python@v2
with:
python-version: 3.10.4
- name: Install Requirements
run: pip install -r requirements.txt
- name: Run Tests
run: python -m pytest tests/integration/test_create2_deployment.py