Skip to content

Commit

Permalink
Create post_commit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ruwayd99 authored Dec 6, 2023
1 parent 18d0392 commit d791927
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/post_commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Pylint Post-Commit

on: [push]

jobs:
post-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
- name: Check for style using pylint (post-commit)
run: |
for file in ${{ steps.changed-files.outputs.all_modified_files }}; do
if [[ -f $file && $file == *.py ]]; then
echo $file
pylint --disable=all --enable=style $file
autopep8 --in-place --aggressive $file
fi
done

0 comments on commit d791927

Please sign in to comment.