Skip to content

Add Python 3.12

Add Python 3.12 #140

Workflow file for this run

name: Lint & Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements-dev.txt
- name: Build C extension
run: invoke build.all
- name: Lint
run: invoke lint
- name: Test
run: invoke test