Skip to content

feat: bump the Python version to 3.14 #119

feat: bump the Python version to 3.14

feat: bump the Python version to 3.14 #119

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
ci:
name: Run black, mypy and pylint tools
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
enable-cache: true
- name: Install Python dependencies
run: uv sync
- name: Check code formatting with Black
run: uv run black --check --diff .
- name: Python type hinting and annotations checks with Mypy
run: |
uv run mypy *.py
- name: Python code analysis with Pylint
run: |
uv run pylint --output-format=text ./**/*.py