PR checks: Use latest version of Github Actions #1298
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Run Linters | |
on: | |
- push | |
- pull_request | |
jobs: | |
ansible_lint: | |
name: Verify ansible-lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@main | |
with: | |
python-version: "3.x" | |
- name: Install ansible-lint | |
run: pip install "ansible-core" 'ansible-lint>=6.22' | |
- name: Build ansible-freeipa collection | |
run: | | |
utils/build-galaxy-release.sh -ki | |
cd .galaxy-build | |
- name: Run ansible-lint | |
run: ansible-lint --profile production --exclude tests/integration/ --exclude tests/unit/ --parseable --nocolor | |
#- name: Run ansible-lint | |
# run: | | |
# pip install "ansible-core" 'ansible-lint>=6.22' | |
# utils/build-galaxy-release.sh -ki | |
# cd .galaxy-build | |
# ansible-lint --profile production --exclude tests/integration/ --exclude tests/unit/ --parseable --nocolor | |
yamllint: | |
name: Verify yamllint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@main | |
with: | |
python-version: "3.x" | |
- name: Run yaml-lint | |
uses: ibiqlik/[email protected] | |
pydocstyle: | |
name: Verify pydocstyle | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@main | |
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@main | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@main | |
with: | |
python-version: "3.x" | |
- name: Run flake8 | |
run: | | |
pip install flake8 flake8-bugbear | |
flake8 | |
pylint: | |
name: Verify pylint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@main | |
with: | |
python-version: "3.x" | |
- name: Run pylint | |
run: | | |
pip install 'pylint>=3.0' | |
pylint plugins roles --disable=import-error | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master |