Skip to content

Commit c413895

Browse files
committed
Add step to apply CRDs in cel-tests CI job
1 parent d25661a commit c413895

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,16 @@ jobs:
327327
cache-dependency-path: |
328328
go.sum
329329
.github/.cache/buster-for-unit-tests
330-
330+
331331
- name: Deploy Kubernetes
332332
id: k8s
333333
run: |
334334
kind create cluster --name ${{ github.run_id }} --image=kindest/node:${{ needs.vars.outputs.k8s_latest }}
335335
336+
- name: Apply CustomResourceDefinition
337+
run: |
338+
kubectl kustomize config/crd | kubectl apply -f -
339+
336340
- name: Run Tests
337341
run: make -C tests test-cel-validation
338342

0 commit comments

Comments
 (0)