Skip to content

Added Pylint

Added Pylint #1

Workflow file for this run

# https://black.readthedocs.io/en/stable/integrations/github_actions.html
name: Pylint
on:
- push
- pull_request
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- run: |
python -m pip install --upgrade pip
pip install pylint
- name: pylint
run: |
find . -name '*.py' -exec pylint {} \;