mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 14:03:01 +07:00
31 lines
553 B
YAML
31 lines
553 B
YAML
apiVersion: tekton.dev/v1beta1
|
|
kind: Task
|
|
metadata:
|
|
name: lint
|
|
spec:
|
|
workspaces:
|
|
- name: source
|
|
steps:
|
|
- name: ansible
|
|
image: cytopia/ansible-lint
|
|
workingDir: /workspace/source/metal
|
|
command:
|
|
- ansible-lint
|
|
args:
|
|
- -v
|
|
- name: yaml
|
|
image: cytopia/yamllint
|
|
command:
|
|
- yamllint
|
|
args:
|
|
- .
|
|
- name: terraform
|
|
image: hashicorp/terraform:1.1.4
|
|
command:
|
|
- terraform
|
|
args:
|
|
- fmt
|
|
- -recursive
|
|
- -check
|
|
- -diff
|