Delete Sukh directory #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyLint | |
on: [push, pull_request] | |
jobs: | |
PEP8: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Install Python lint libraries | |
run: | | |
pip install autoflake isort black | |
- name: Remove unused imports and variables | |
run: | | |
autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports . | |
- name: lint with isort | |
run: | | |
isort . | |
- name: lint with black | |
run: | | |
black --exclude "exampleconfig\.py" . | |
# commit changes | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'legend fixed' | |
commit_options: '--no-verify' | |
repository: . | |
commit_user_name: Badhacker98 | |
commit_user_email: sukhwinerwarval50@gmail.com | |
commit_author: badhacker98<sukhwinerwarval50@gmail.com> |