Skip to content

Testing github action, don't merge #3

Testing github action, don't merge

Testing github action, don't merge #3

Workflow file for this run

name: Test
on: [pull_request] #tmp for testing w/o merge
jobs:
build:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest] #, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tox with python on PATH
run: tox -e py