Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Test with Python 3.12 and 3.13-dev #55

Test with Python 3.12 and 3.13-dev

Test with Python 3.12 and 3.13-dev #55

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