Skip to content

Merge pull request #108 from warner/105-python-313-support #29

Merge pull request #108 from warner/105-python-313-support

Merge pull request #108 from warner/105-python-313-support #29

Workflow file for this run

---
name: CI
on:
push:
branches: ["master"]
tags:
- "*"
pull_request:
branches: ["master"]
jobs:
tests:
name: "${{ matrix.os }}: Python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
os: ["ubuntu-22.04"]
runs-on: "${{ matrix.os }}"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- run: |
pip install 'tox<4' tox-gh-actions
tox