Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Start of v2 platform changes. Update workflow. closes #40. #23

Start of v2 platform changes. Update workflow. closes #40.

Start of v2 platform changes. Update workflow. closes #40. #23

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-tox:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: ['3.12', '3.13']
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Tox
run: tox