We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a155b3 commit 41836a0Copy full SHA for 41836a0
1 file changed
.github/workflows/ci.yml
@@ -52,10 +52,21 @@ jobs:
52
- uses: Swatinem/rust-cache@v2
53
- run: cargo clippy --all-targets --all-features
54
55
+ kubeconform:
56
+ name: Lint Kubernetes manifests
57
+ runs-on: ubuntu-latest
58
+ steps:
59
+ - uses: actions/checkout@v6
60
+ - name: Install kubeconform
61
+ run: |
62
+ curl -fsSL https://github.com/yannh/kubeconform/releases/latest/download/kubeconform-linux-amd64.tar.gz \
63
+ | tar xz -C /usr/local/bin kubeconform
64
+ - run: kubeconform -strict -summary operator.yaml
65
+
66
tests-pass:
67
if: always()
68
name: Tests pass
- needs: [test]
69
+ needs: [test, clippy, kubeconform]
70
runs-on: ubuntu-latest
71
steps:
72
- uses: re-actors/alls-green@release/v1
0 commit comments