Skip to content

version = "0.1.22" #960

version = "0.1.22"

version = "0.1.22" #960

Workflow file for this run

name: "Test Suite"
on:
push:
pull_request:
defaults:
run:
shell: bash
jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v4"
- name: "Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
python -m pip install tox tox-gh-actions
- name: "Run tox for ${{ matrix.python-version }}"
run: |
python -m tox -- -m "cpu_only"