Skip to content

CI: test on 3.13

CI: test on 3.13 #12

Workflow file for this run

name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: |
pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
poetry install
- name: Lint with Mypy
run: |
poetry run mypy --check-untyped-defs clj tests
- name: Run Tests
run: |
poetry run pytest
- name: Test build
run: |
poetry build