From eae7f0374807d79b84dd3d06291b9521c93d0f87 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Tue, 25 May 2021 14:57:36 -0300 Subject: [PATCH] ci: Run Github linter verification workflow in different jobs. This patch modify Github 'lint' workflow to execute each linter verifications as a separate job. This will allow us to easily see which linter has failed, and ensure that all are executed, even if one fails. --- .github/workflows/lint.yml | 50 +++++++++++++++++++++++++++++++++----- 1 file changed, 44 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 62564979..cb33ca71 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,15 +4,14 @@ on: - push - pull_request jobs: - linters: - name: Run Linters + ansible_lint: + name: Verify ansible-lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: "3.6" - + python-version: "3.x" - name: Run ansible-lint uses: ansible/ansible-lint-action@master with: @@ -26,12 +25,51 @@ jobs: ANSIBLE_MODULE_UTILS: plugins/module_utils ANSIBLE_LIBRARY: plugins/modules + yamllint: + name: Verify yamllint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: "3.x" - name: Run yaml-lint uses: ibiqlik/action-yamllint@v1 - - name: Run Python linters - uses: rjeffman/python-lint-action@v2 + pydocstyle: + name: Verify pydocstyle + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: "3.x" + - name: Run pydocstyle + run: | + pip install pydocstyle + pydocstyle + + flake8: + name: Verify flake8 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: "3.x" + - name: Run flake8 + run: | + pip install flake8 + flake8 + pylint: + name: Verify pylint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: "3.x" - name: Run pylint run: | pip install pylint==2.8.2 -- GitLab