update to 2.4.4 and remove python 3.8 #420
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: Run Test Suite | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
tags: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}--${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/heads/long_lived/')) && github.sha || '' }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os.runs-on }} | |
name: All tests | |
timeout-minutes: 30 | |
strategy: | |
max-parallel: 4 | |
fail-fast: false | |
matrix: | |
os: | |
- runs-on: macos-latest | |
- runs-on: ubuntu-latest | |
- runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Setup simulator | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Test code with pytest | |
shell: bash | |
run: | | |
python3 -m venv venv | |
if [[ ${{ matrix.os.runs-on }} == windows-latest ]]; then | |
source ./venv/Scripts/activate | |
python -m pip install --upgrade pip | |
else | |
. ./venv/bin/activate | |
fi | |
pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev] | |
chia init | |
echo -ne "\n" | chia dev sim create | |
export CHIA_ROOT=~/.chia/simulator/main/ | |
chia start wallet | |
sleep 10 | |
chia wallet did create | |
chia wallet nft create | |
pytest tests/test_mint.py |