Enable Python linters as Github Actions

Flake8 and Pydocstyle were already being used as checks on Azure
pipelines, and this change enable the use of both as Github actions
run on every push (on any fork) end every pull-request.

I uses `rjeffman/python-lint-action` to run both linters using the
project's configuration.
This commit is contained in:
Rafael Guterres Jeffman
2020-09-01 15:58:01 -03:00
parent f2b4bac386
commit bbf6d51f70

View File

@@ -29,3 +29,5 @@ jobs:
- name: Run yaml-lint
uses: ibiqlik/action-yamllint@v1
- name: Run Python linters
uses: rjeffman/python-lint-action@master