Skip to content

Commit

Permalink
workflows: add pylint check
Browse files Browse the repository at this point in the history
  • Loading branch information
Rechi committed Jun 9, 2024
1 parent 985bfb1 commit 8b5e1dd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,19 @@ jobs:
- name: Fail if autopep8 made changes
if: steps.autopep8.outputs.exit-code == 2
run: exit 1

pylint:
runs-on: ubuntu-latest
name: pylint
steps:
- name: checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Run pylint
id: pylint
run: pylint resources/lib

0 comments on commit 8b5e1dd

Please sign in to comment.