Revert "Adding Flake8 Github Action for Python Linting "

This commit is contained in:
Patrick McGuire
2022-05-11 09:05:59 -04:00
committed by GitHub
parent bffd6a889d
commit 528802a0e6
6 changed files with 256 additions and 473 deletions
-23
View File
@@ -1,23 +0,0 @@
name: CI Jobs
on: pull_request
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.9.x'
cache: 'pip'
architecture: 'x64'
- name: Install flake8
run: pip install flake8
- name: Run Flake8 Lint
uses: py-actions/flake8@v2