From 12d98b54224921fb65d5743d798c831da3880756 Mon Sep 17 00:00:00 2001 From: Morgan-Phoenix <73711602+Morgan-Phoenix@users.noreply.github.com> Date: Tue, 29 Jun 2021 17:05:43 +0530 Subject: [PATCH] Delete pylint.yml --- .github/workflows/pylint.yml | 22 ---------------------- 1 file changed, 22 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 c16ba22..0000000 --- a/.github/workflows/pylint.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Pylint - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.8 - uses: actions/setup-python@v1 - with: - python-version: 3.8 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install pylint - - name: Analysing the code with pylint - run: | - pylint `ls -R|grep .py$|xargs`