blog2epub/.github/workflows/pylint.yml
Bohdan Bobrowski 3c5c81a1ca repo cleanup
2024-07-20 11:55:47 +02:00

23 lines
577 B
YAML

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry install --with=dev
- name: Analysing the code with pylint
run: |
poetry run pylint ./blog2epub --fail-under=9 $(git ls-files '*.py')