29 lines
792 B
YAML
29 lines
792 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 \
|
|
-schema-location default \
|
|
-schema-location "https://raw.githubusercontent.com/cert-manager/cert-manager/master/deploy/crds/{{ .Group }}_{{ .ResourceAPIVersion }}_{{ .ResourceKind }}.json"
|
|
|