🌱 Bump github.com/operator-framework/operator-registry (#575) #530
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy-test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-basic: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run basic deploy/undeploy | |
run: | | |
make kind-cluster | |
make deploy | |
kubectl get crds clusterextensions.olm.operatorframework.io | |
kubectl get ns operator-controller-system | |
make undeploy | |
! kubectl get ns operator-controller-system | |
! kubectl get crds clusterextensions.olm.operatorframework.io |