From 5416fb33819ae8219a89f3e0e7d237af2bc61c32 Mon Sep 17 00:00:00 2001 From: Marco Verleun <11242627+mverleun@users.noreply.github.com> Date: Mon, 19 Apr 2021 15:33:44 +0200 Subject: [PATCH] Delete .github/workflows directory --- .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`