forked from kompetenzinventar/ki-ansible
28 lines
489 B
YAML
28 lines
489 B
YAML
# SPDX-FileCopyrightText: 2024 WTF Kooperative eG <https://wtf-eg.de/>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: compliance
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
- pull_request
|
|
branch:
|
|
- main
|
|
|
|
steps:
|
|
- name: reuse
|
|
image: fsfe/reuse:4.0.3-debian
|
|
- name: yamllint
|
|
image: alpine:3.20
|
|
commands:
|
|
- apk add yamllint
|
|
- yamllint .
|
|
- name: ansible-lint
|
|
image: quay.io/ansible/creator-ee:v24.2.0
|
|
commands:
|
|
- ansible-lint
|