28 lines
692 B
YAML
28 lines
692 B
YAML
name: ansible-lint
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ansible-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: write ssh-key
|
|
run: echo ${SSHKEY} > ./id_ed25519
|
|
|
|
- name: set ssh-key permissions
|
|
run: chmod 0400 ./id_ed25519
|
|
|
|
- name: write vault-pass
|
|
run: echo ${VAULTPASS} > ./vault-pass
|
|
|
|
- name: Debug
|
|
run: cat ./vault-pass
|
|
|
|
- name: run ansible-lint
|
|
uses: docker://registry.mgrote.net/ansible-devspace:latest
|
|
with:
|
|
args: ansible-lint --force-color --format pep8 --show-relpath
|
|
|
|
# SSHKEY + VAULTPASS sind als Secrets auf Repo-Ebene angelegt
|