Skip to content

some cmd only for sudo #3

some cmd only for sudo

some cmd only for sudo #3

Workflow file for this run

name: PyLint
on: [push, pull_request]
jobs:
PEP8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.11.6
- 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 .
- name: lint with isort
run: |
isort .
- name: lint with black
run: |
black .
# commit changes
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'Auto Fixes'
commit_options: '--no-verify'
repository: .
commit_user_name: Abishnoi69
commit_user_email: [email protected]
commit_author: Abishnoi69 <[email protected]>