Skip to content

Bump actions/setup-python from 4 to 5 (#117) #457

Bump actions/setup-python from 4 to 5 (#117)

Bump actions/setup-python from 4 to 5 (#117) #457

Workflow file for this run

name: Tests
on:
push:
branches:
- 'long_lived/**'
- main
- 'release/**'
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
name: Python ${{ matrix.os }} ${{ matrix.python-version }} sample
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: chia-network/actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Test with pytest
run: |
pytest tests