fukuops/Makefile
cătălin 399dd397bb
All checks were successful
checks / pre-commit (push) Successful in 33s
checks / k8s (push) Successful in 14s
checks / tflint (push) Successful in 14s
ci: add pre-commit, k8s and tflint action workflows
2024-08-04 02:22:11 +02:00

19 lines
352 B
Makefile

lint--pre-commit:
pre-commit run --all-files --color always
lint--kubeconform:
kubeconform -strict -ignore-missing-schemas k8s/
SHELl=/bin/bash
lint--kubescore:
kube-score score $$(find k8s -type f -print -name "*.yaml")
lint--tflint:
tflint --recursive
lint:
make lint--pre-commit
make lint--kubeconform
make lint--kube
make lint--tflint