From 25b0def06259b84538e0dea8c0a3631f1fd6f89c Mon Sep 17 00:00:00 2001 From: Brooks Travis Date: Mon, 15 Jul 2024 12:52:20 -0500 Subject: [PATCH] Adding flake8 back --- .github/workflows/python-package.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 61f0c06..29b4a0c 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -22,12 +22,16 @@ jobs: - name: Install poetry run: | - python -m pip install poetry + python -m pip install poetry - name: Install dependencies run: | poetry install --with dev + - name: Install Flake8 + run: | + poetry add flake8 --dev + - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names