Skip to content

Commit

Permalink
Add autopep8 lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
rdg922 authored Oct 22, 2024
1 parent cce3162 commit 021dd52
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Install Autopep8
run: pip install autopep8
- name: Lint Action
uses: wearerequired/[email protected]
with:
autopep8: true
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')

0 comments on commit 021dd52

Please sign in to comment.