Skip to content

Fix compatibility with Python 3.14 #12

Fix compatibility with Python 3.14

Fix compatibility with Python 3.14 #12

Workflow file for this run

name: Lint and test code
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements_dev.txt
- name: Run mdl
uses: actionshub/markdownlint@main
- name: Run checks
run: make style types requirements
- name: Run tests
run: make test