72 lines
1.7 KiB
YAML
72 lines
1.7 KiB
YAML
---
|
|
|
|
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [main, stable, latest]
|
|
paths:
|
|
- '**.py'
|
|
- '**.yml'
|
|
- '.github/workflows/lint.yml'
|
|
- 'requirements_lint.txt'
|
|
- '.yamllint'
|
|
- '.pylintrc'
|
|
- '.pylintrc_j2'
|
|
- '.ansible-lint.yml'
|
|
pull_request:
|
|
branches: [main, stable, latest]
|
|
paths:
|
|
- '**.py'
|
|
- '**.yml'
|
|
- '.github/workflows/lint.yml'
|
|
- 'requirements_lint.txt'
|
|
- '.yamllint'
|
|
- '.pylintrc'
|
|
- '.pylintrc_j2'
|
|
- '.ansible-lint.yml'
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 2
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
|
|
- name: Install python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -r requirements_lint.txt
|
|
shell: bash
|
|
|
|
- name: Running PyLint
|
|
run: pylint --recursive=y .
|
|
shell: bash
|
|
|
|
- name: Running PyLint (*.py.j2)
|
|
run: |
|
|
if [ -f ".pylintrc_j2" ]; then j2_cnf=".pylintrc_j2"; else j2_cnf='.pylintrc'; fi
|
|
find -type f -name *.py.j2 -print0 | xargs --no-run-if-empty -0 -n1 pylint --rcfile "$(pwd)/${j2_cnf}"
|
|
shell: bash
|
|
|
|
- name: Running YamlLint
|
|
run: yamllint .
|
|
shell: bash
|
|
|
|
- name: Preparing for AnsibleLint
|
|
run: |
|
|
mkdir -p '/tmp/ansible_lint/roles/'
|
|
ln -s "${{ github.workspace }}" "/tmp/ansible_lint/roles/oxlorg.certs"
|
|
shell: bash
|
|
|
|
- name: Running AnsibleLint
|
|
run: ANSIBLE_ROLES_PATH=/tmp/ansible_lint/roles/ ansible-lint -c .ansible-lint.yml
|
|
shell: bash
|