Add ansible-lint configuration file

This commit is contained in:
Paul Brinkmeier 2023-06-09 00:42:05 +02:00
parent 083f93ec5f
commit 84bfeb5c32
2 changed files with 5 additions and 1 deletions

4
.ansible-lint Normal file
View File

@ -0,0 +1,4 @@
---
offline: true
profile: basic

View File

@ -7,7 +7,7 @@ steps:
image: python:3.10.6 image: python:3.10.6
commands: commands:
- pip --disable-pip-version-check install ansible-core==2.15.0 ansible-lint==6.16.1 > /dev/null 2> /dev/null - pip --disable-pip-version-check install ansible-core==2.15.0 ansible-lint==6.16.1 > /dev/null 2> /dev/null
- ansible-lint --offline ansible - ansible-lint -c .ansible-lint ansible
--- ---
kind: pipeline kind: pipeline