Skip to content

chore: remove support of python 3.9 due to EOL #391

chore: remove support of python 3.9 due to EOL

chore: remove support of python 3.9 due to EOL #391

Workflow file for this run

name: "Linters"
on:
pull_request:
push:
branches:
- main
jobs:
pylint:
name: Python Code Quality and Lint
runs-on: ubuntu-latest
strategy:
matrix:
linter-env: ["linting", "type_check", "spell_check"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
allow-prereleases: true
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run ${{ matrix.linter-env }} via Tox
run: |
tox -e ${{ matrix.linter-env }}