Skip to content

tox: Add Python 3.12 and 3.13 #21

tox: Add Python 3.12 and 3.13

tox: Add Python 3.12 and 3.13 #21

Workflow file for this run

name: tox
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- name: Install sip-tester
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: sip-tester
version: 1.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tox with tox-gh-actions
uses: ymyzk/run-tox-gh-actions@main