Skip to content

Update Managed Files #589

Update Managed Files

Update Managed Files #589

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.10", "3.11", "3.12"]
name: Python ${{ matrix.os }} ${{ matrix.python-version }} sample
steps:
- uses: actions/checkout@v5
- name: Setup python
uses: chia-network/actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Test with pytest
run: |
pytest tests