Skip to content

Rework the action runner #1

Rework the action runner

Rework the action runner #1

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
run-pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Analyze the code with pylint
run: |
pylint --fail-under=10.0 $(git ls-files '*.py')