diff options
author | Lukas Fleischer <lfleischer@calcurse.org> | 2021-04-03 13:25:51 -0400 |
---|---|---|
committer | Lukas Fleischer <lfleischer@calcurse.org> | 2021-04-03 18:12:31 -0400 |
commit | 81c26f8fd588c286cd262068a76234599191a4e9 (patch) | |
tree | e816d4b67c8bbe5a526e637b98e89b2fe655dcff | |
parent | 3e8bba2fd1e71899adaa88fc1fbdeacd7b51815e (diff) | |
download | calcurse-81c26f8fd588c286cd262068a76234599191a4e9.tar.gz calcurse-81c26f8fd588c286cd262068a76234599191a4e9.zip |
Add GitHub Actions workflow lint_python
Run codespell, flake8, and isort for each change to one of the scripts
in contrib/.
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
-rw-r--r-- | .github/workflows/lint_python.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml new file mode 100644 index 0000000..c04a772 --- /dev/null +++ b/.github/workflows/lint_python.yml @@ -0,0 +1,21 @@ +name: Lint Python + +on: + pull_request: + paths: ['contrib/**'] + push: + paths: ['contrib/**'] + +jobs: + lint_python: + runs-on: ubuntu-latest + defaults: + run: + working-directory: contrib + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - run: pip install codespell flake8 isort + - run: codespell --quiet-level=2 || true + - run: flake8 --count --show-source --statistics + - run: isort --check-only --profile black . |