add boa script for registry setup (doesnt work but will be fixed later) #280
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: unitary | |
on: ["push", "pull_request"] | |
env: | |
ETHERSCAN_TOKEN: ${{ secrets.ETHERSKEM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WEB3_INFURA_PROJECT_ID: ${{ secrets.INFURA_TOKEN }} | |
WEB3_ALCHEMY_PROJECT_ID: ${{secrets.ALCHEMY_API_KEY}} | |
jobs: | |
unitary: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Compiler Installations | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.vvm | |
key: compiler-cache | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install Hardhat | |
run: npm ci | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Requirements | |
run: pip install -r requirements.txt | |
- name: Run Tests | |
run: ape test |