homeserver/.gitea/workflows/ci.yaml
Michael Grote d4c7d6bfab
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 42s
ansible-lint / gitleaks (push) Successful in 5s
ci: fix ansible-lint (#178)
Reviewed-on: https://git.mgrote.net///mg/homeserver/pulls/178
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
2024-09-13 19:31:34 +02:00

34 lines
824 B
YAML

name: ansible-lint
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
jobs:
ansible-lint:
name: Ansible Lint
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: write vault-pass
run: echo ${{ secrets.VAULTPASS }} > ./vault-pass
- name: Run ansible-lint
uses: docker://registry.mgrote.net/ansible-devspace:latest
with:
args: /home/ansible-dev/.local/bin/ansible-lint --force-color --format pep8 --show-relpath
gitleaks:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Gitleaks
uses: docker://zricethezav/gitleaks:v8.18.4
with:
args: detect --no-git --verbose --source ${{ github.workspace }}
# VAULTPASS ist als Secrets auf Repo-Ebene angelegt