From 8ec06a606bdc631afc41e226a0c432c1da043c55 Mon Sep 17 00:00:00 2001 From: Mike Ripley Date: Mon, 18 Jul 2022 20:34:34 -0400 Subject: [PATCH] Clean up lint workflow Finch dependency --- .github/workflows/lint.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 31585cdf..fe1d4708 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -69,11 +69,9 @@ jobs: - name: Install dependencies run: | pip3 install pyyaml pygobject pylint click PyGithub jinja2 aiohttp - # We cannot just do roles/*/*/*py because we do not want to lint the - # finch scripts which we cannot change - name: Run pylint run: | - pylint roles/common/*/*.py scripts/*.py + pylint roles/*/*/*.py scripts/*.py Shell: name: Run Shell linting runs-on: ubuntu-20.04