v2.1.0 add sepolia #43
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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Run Ganache | |
run: docker-compose up -d | |
- name: Install Dependencies | |
run: sudo pip install -r requirements-test.txt | |
- name: Test | |
env: | |
V3_API_HOST: https://api.stage.dydx.exchange | |
run: tox |