Update chia-blockchain to 2.1.0, fix tests, and other updates #4
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Python tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clean workspace | |
uses: Chia-Network/actions/clean-workspace@main | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: Chia-Network/actions/setup-python@main | |
with: | |
python-version: '3.10' | |
- name: Run poetry install | |
uses: Chia-Network/actions/poetry@main | |
with: | |
poetry-command: "install --with dev" | |
- name: Run Python tests | |
run: pytest tests |