Skip to content

test: fix github actions #19

test: fix github actions

test: fix github actions #19

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Python
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 for py${{ matrix.python-version }}
run: tox -e py
- name: Run extra tox targets
run: tox -e lint