homeserver/.gitea/workflows/ci.yaml
Michael Grote bd01983556
Some checks failed
ansible-lint / Ansible Lint (pull_request) Failing after 5s
ansible-lint / gitleaks (pull_request) Successful in 6s
dd
2024-09-13 18:59:17 +02:00

30 lines
760 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: Run ansible-lint
uses: docker://registry.mgrote.net/ansible-devspace:latest
with: # notwendig da ENTRYPOINT auf start-tmux.sh gesetzt ist
args: 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