Skip to content

Test with Python 3.12 and 3.13-dev (#105) #59

Test with Python 3.12 and 3.13-dev (#105)

Test with Python 3.12 and 3.13-dev (#105) #59

Workflow file for this run

name: CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
# https://github.com/actions/setup-python/blob/v4.7.1/src/find-python.ts#L162-L166
- "3.13-dev"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup
run: make setup
- name: Test
run: make test