Bump WEB3 and ETH dependencies #609
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 SDKs | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'release/*' | |
workflow_dispatch: | |
# Cancel previous running jobs on the same branch | |
concurrency: | |
group: test-sdks-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install SDKs | |
run: | | |
# TODO: move me in a requirements file | |
pip install pytest | |
pip install . ./template | |
- name: Run pytest | |
run: | | |
# pytest --capture=no -vv --exitfirst tests | |
pytest --capture=no -vv tests |