Skip to content

Merge pull request #45 from hugovk/main #133

Merge pull request #45 from hugovk/main

Merge pull request #45 from hugovk/main #133

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: ${{ matrix.os }}-Python${{ matrix.py }}
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os:
- Ubuntu
- Windows
# - MacOS
py:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
- "3.15"
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.py }}
allow-prereleases: true
# Get the latest nox
- name: Install nox
run: python -m pip install nox
# Main check
- name: Run test suite for ${{ matrix.os }}-Python${{ matrix.py }}
run: python -m nox -s tests