From 208c7d03e33ccd2d5ea1ab994d829cb40467c86f Mon Sep 17 00:00:00 2001 From: xz5pd <42339816+xz5pd@users.noreply.github.com> Date: Fri, 23 Apr 2021 17:56:42 +0700 Subject: [PATCH] Delete pylint.yml --- .github/workflows/pylint.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/pylint.yml diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml deleted file mode 100644 index faa6e253..00000000 --- a/.github/workflows/pylint.yml +++ /dev/null @@ -1,34 +0,0 @@ -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.2 - - - name: Install Python lint libraries - run: | - pip install autopep8 autoflake - - name: Check for showstoppers - run: | - autopep8 --verbose --in-place --recursive --aggressive --aggressive . *.py - - name: Remove unused imports and variables - run: | - autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports . - - # commit changes - - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: 'pylint: auto fixes' - commit_options: '--no-verify --signoff' - repository: . - commit_user_name: Zora24 - commit_user_email: liualvinas1212@gmail.com - commit_author: Zora24