Skip to content

debug logging output for pre_condition #71

debug logging output for pre_condition

debug logging output for pre_condition #71

Workflow file for this run

name: Pylint
on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0" # every Sunday at midnight
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
env:
PYLINT_ARGS: '--output-format=parseable --errors-only'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install .
- name: Analysing the code with pylint
run: |
pylint ${{ env.PYLINT_ARGS }} $(git ls-files '*.py')