From 36e048db0a604baaec136b9f4f91e383eb77cb57 Mon Sep 17 00:00:00 2001 From: gpopesc Date: Wed, 11 Aug 2021 22:11:12 +0300 Subject: [PATCH] Delete pep8.yml --- .github/workflows/pep8.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/pep8.yml diff --git a/.github/workflows/pep8.yml b/.github/workflows/pep8.yml deleted file mode 100644 index 26bcc20..0000000 --- a/.github/workflows/pep8.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: pep8 - -on: - push - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install pycodestyle - - name: Run pycodestyle - run: | - pycodestyle --show-source --show-pep8 app/* - pycodestyle --show-source --show-pep8 test/*