Skip to content

ci.yml: Add Python 3.12 and 3.13 to the testing #63

ci.yml: Add Python 3.12 and 3.13 to the testing

ci.yml: Add Python 3.12 and 3.13 to the testing #63

Workflow file for this run

---
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
experimental: [false]
name: Python ${{ matrix.python-version}}
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Update pip and install dev requirements
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test
run: tox