Skip to content

Bump mkdocstrings-python from 1.11.1 to 1.13.0 (#325) #492

Bump mkdocstrings-python from 1.11.1 to 1.13.0 (#325)

Bump mkdocstrings-python from 1.11.1 to 1.13.0 (#325) #492

Workflow file for this run

name: pylint
"on":
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Running tests
run: |
python -m pip install --quiet --no-cache-dir --upgrade poetry
poetry install
poetry run ruff check $(basename $(pwd) | sed -E 's/-/_/g')
poetry run ruff check tests/
poetry run validate-pyproject pyproject.toml