From d00609bb8a977f71e9b6e2c9ca45a9aa765c7a3f Mon Sep 17 00:00:00 2001 From: Michael H Date: Fri, 3 Jan 2020 22:22:10 -0500 Subject: [PATCH] pyflakes (#3266) --- .github/workflows/lint_python.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/lint_python.yaml diff --git a/.github/workflows/lint_python.yaml b/.github/workflows/lint_python.yaml new file mode 100644 index 000000000..e1a095033 --- /dev/null +++ b/.github/workflows/lint_python.yaml @@ -0,0 +1,12 @@ +name: lint_python +on: [push, pull_request] +jobs: + lint_python: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + with: + python_version: "3.8" + - run: "python -m pip install flake8" + - run: "python -m flake8 . --count --select=E9,F7,F82 --show-source"