homeserver/.gitea/workflows/ansible-lint.yaml
Michael Grote 8395c2ec96
All checks were successful
ansible-lint / ansible-lint (push) Successful in 4m17s
gitleaks / gitleaks (push) Successful in 3m38s
replace woodpecker-ci with gitea-act-runner (#166) - part 1
Reviewed-on: #166
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
2024-08-22 22:45:13 +02:00

22 lines
496 B
YAML

name: ansible-lint
on:
push:
branches: [ master ]
pull_request:
jobs:
ansible-lint:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: write vault-pass
run: echo ${{ secrets.VAULTPASS }} > ./vault-pass
- name: run ansible-lint
uses: docker://registry.mgrote.net/ansible-devspace:latest
with:
args: ansible-lint --force-color --format pep8 --show-relpath
# VAULTPASS ist als Secrets auf Repo-Ebene angelegt