Skip to content

Commit

Permalink
Added Pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
arueth committed Nov 6, 2024
1 parent 02fa999 commit 188bf4d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pylint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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 {} \;

0 comments on commit 188bf4d

Please sign in to comment.