Files
homelab/.gitea/workflows/lint.yaml
ab 1793648f4d
All checks were successful
Check with kubeconform / lint (push) Successful in 4s
Update .gitea/workflows/lint.yaml
2025-04-13 10:43:40 +00:00

26 lines
576 B
YAML

name: Check with kubeconform
on:
push:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bmuschko/setup-kubeconform@v1
name: Setup Kubeconform
- name: Kubeconform
continue-on-error: true
run: |
find . -name '*.yaml' \
! -name '*values.yaml' \
! -path './.gitea/*' \
-print0 \
| xargs -0 kubeconform \
-summary \
-verbose \
-output pretty \
-ignore-missing-schemas