Skip to content

Update supported Python versions #90

Update supported Python versions

Update supported Python versions #90

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
jobs:
build-and-check:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Bootstrap
run: make ci.bootstrap
- name: Check
run: make check