Skip to content

Release v4.3.2: deprecate utils.wikidata #174

Release v4.3.2: deprecate utils.wikidata

Release v4.3.2: deprecate utils.wikidata #174

Workflow file for this run

name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
poetry install --extras dev
- name: Lint with pylint
run: |
poetry run pylint --rcfile=.pylintrc $(git ls-files '*.py') --fail-under=9.5