Skip to content

Update dependency pylint to v4 #1012

Update dependency pylint to v4

Update dependency pylint to v4 #1012

Workflow file for this run

---
name: tests
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 6 * * 0"
jobs:
tests:
name: Run tests (py${{ matrix.python }})
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: ${{ matrix.python }}
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: |
poetry run pytest
poetry run black .
poetry run mypy .
poetry run isort .