Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Dec 26, 2024
1 parent 98f536f commit 3ad0f42
Show file tree
Hide file tree
Showing 9 changed files with 873 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .ansible-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---

skip_list:
- 'var-naming'
- 'no-handler'
- '503' # no-handler code
- 'role-name'
- '106'
- 'ignore-errors'
- 'yaml'
- '204' # line length => checked by yamllint
- 'name[template]'
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---

ko_fi: ansible0guy
github: ansibleguy
63 changes: 63 additions & 0 deletions .github/workflows/autolint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---

name: Lint

on:

Check warning on line 5 in .github/workflows/autolint.yml

View workflow job for this annotation

GitHub Actions / build

5:1 [truthy] truthy value should be one of [false, no, true, yes]
push:
branches: [main, stable, latest]
paths:
- '**.py'
- '**.yml'
- '.github/workflows/lint.yml'
- 'requirements_lint.txt'
pull_request:
branches: [main, stable, latest]
paths:
- '**.py'
- '**.yml'
- '.github/workflows/lint.yml'
- 'requirements_lint.txt'

jobs:
build:
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.10'

- 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/ansibleguy.${{ github.event.repository.name }}"
shell: bash

- name: Running AnsibleLint
run: ANSIBLE_ROLES_PATH=/tmp/ansible_lint/roles/ ansible-lint -c .ansible-lint.yml
shell: bash
Loading

0 comments on commit 3ad0f42

Please sign in to comment.