homeserver/.gitea/workflows/ansible-lint.yaml
Michael Grote 059865152e
Some checks failed
ansible-lint / ansible-lint (pull_request) Failing after 3s
gitleaks / gitleaks (pull_request) Successful in 4s
dd
2024-09-13 18:05:48 +02:00

23 lines
499 B
YAML

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