Skip to content

Commit

Permalink
gh: test operator API using envtest
Browse files Browse the repository at this point in the history
Signed-off-by: Mikko Ylinen <[email protected]>
  • Loading branch information
mythi committed Aug 29, 2024
1 parent cff5d79 commit 9e4c650
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/makefile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,31 @@ jobs:
- name: Download kustomize
run: make kustomize

- name: Download envtest
run: make envtest

- name: Build controller
run: make build

- name: Build bundle
run: make bundle IMG=quay.io/confidential-containers/operator:latest

envtest:
name: Test APIs using envtest
runs-on: ubuntu-22.04
strategy:
matrix:
version:
- 1.29.x
- 1.30.x
- 1.31.x
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version-file: go.mod
check-latest: true
- name: Install envtest and k8s control plane
run: |
go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
setup-envtest use ${{ matrix.version }}
- name: Run envtest
run: |
KUBEBUILDER_ASSETS=$(setup-envtest use -i -p path ${{ matrix.version }}) go test ./... -coverprofile cover.out

0 comments on commit 9e4c650

Please sign in to comment.