Add CI
All checks were successful
ci/woodpecker/manual/lint Pipeline was successful
ci/woodpecker/manual/test Pipeline was successful

This commit is contained in:
2023-10-10 23:25:49 +13:00
parent 27364b18c8
commit 65319a8438
2 changed files with 38 additions and 0 deletions

17
.woodpecker/lint.yml Normal file
View File

@@ -0,0 +1,17 @@
steps:
ansible-lint:
group: test
name: "Lint: Ansible-lint"
image: guisea/ansible-molecule
commands:
- ansible-lint -c ".ansible-lint"
when:
event: push
yamllint:
group: test
name: "Lint: Yamllint"
image: guisea/ansible-molecule
commands:
- yamllint .
when:
event: push