From 8e867a5ace54268de85f54746f67c820a5c6f9c2 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Mon, 1 Aug 2022 13:50:27 -0600 Subject: [PATCH] Remove pep8 workflow from ci PEP-8 enforcements in the project are more of an annoyance than anything. It doesn't really seem to add much value, and adds a lot of friction to pull requests from developers who aren't familiar with the style guide. Stylistic enforcements should just be done during PRs if necessary (or a different style guide should be enforced). --- .github/workflows/pep8.yml | 21 --------------------- README.md | 1 - 2 files 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 944bdcb..0000000 --- a/.github/workflows/pep8.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: pep8 - -on: [push, pull_request] - -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/* diff --git a/README.md b/README.md index 5cb63db..38fa8ec 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![tests](https://github.com/benbusby/whoogle-search/actions/workflows/tests.yml/badge.svg)](https://github.com/benbusby/whoogle-search/actions/workflows/tests.yml) [![buildx](https://github.com/benbusby/whoogle-search/actions/workflows/buildx.yml/badge.svg)](https://github.com/benbusby/whoogle-search/actions/workflows/buildx.yml) -[![pep8](https://github.com/benbusby/whoogle-search/workflows/pep8/badge.svg)](https://github.com/benbusby/whoogle-search/actions?query=workflow%3Apep8) [![codebeat badge](https://codebeat.co/badges/e96cada2-fb6f-4528-8285-7d72abd74e8d)](https://codebeat.co/projects/github-com-benbusby-shoogle-master) [![Docker Pulls](https://img.shields.io/docker/pulls/benbusby/whoogle-search)](https://hub.docker.com/r/benbusby/whoogle-search)