Skip to content

feat: support python 3.12 (#225) #103

feat: support python 3.12 (#225)

feat: support python 3.12 (#225) #103

Workflow file for this run

name: Python application
on:
- push
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: run tests
run: make test