This commit is contained in:
parent
d3d37e2e4c
commit
aefdee4074
2 changed files with 29 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
skip_list:
|
skip_list:
|
||||||
- "yaml[line-length]"
|
- "yaml[line-length]"
|
||||||
- "name[casing]"
|
- "name[casing]"
|
||||||
|
- "no-changed-when"
|
||||||
|
- "no-handler"
|
||||||
|
|
||||||
exclude_paths:
|
exclude_paths:
|
||||||
- .forgejo/
|
- .forgejo/
|
||||||
|
|
27
.forgejo/workflows/lint.yaml
Normal file
27
.forgejo/workflows/lint.yaml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# Links & Resources:
|
||||||
|
# https://github.com/ansible/ansible-lint?tab=readme-ov-file#using-ansible-lint-as-a-github-action
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
ansible-lint:
|
||||||
|
name: Ansible Lint
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install pip
|
||||||
|
run: |
|
||||||
|
apt update
|
||||||
|
apt install -y pip
|
||||||
|
- name: Install Python jmespath
|
||||||
|
run: |
|
||||||
|
pip install jmespath
|
||||||
|
env:
|
||||||
|
PIP_BREAK_SYSTEM_PACKAGES: 1
|
||||||
|
- name: Run ansible-lint
|
||||||
|
uses: https://github.com/ansible/ansible-lint@main
|
||||||
|
with:
|
||||||
|
setup_python: "false"
|
||||||
|
env:
|
||||||
|
PIP_BREAK_SYSTEM_PACKAGES: 1
|
Loading…
Reference in a new issue