From 857613d0567f8bb2c1b722c909ea475f43e12fd2 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Tue, 5 Dec 2023 16:23:52 -0600 Subject: [PATCH] Run linters in CI to catch lint issues --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e210204..7c543ae 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,6 +7,16 @@ on: pull_request: jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python }} + - run: python -mpip install --upgrade setuptools pip tox virtualenv + - run: tox -e linters + main: strategy: matrix: