Skip to content

Commit de35a9a

Browse files
committed
Move makefile target kubebuilder to its own step
1 parent 70b0e22 commit de35a9a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/pull_request.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
version: v1.32.2
1919
args: --timeout=5m
2020

21-
- name: Test
21+
- name: Install Kubebuilder
22+
run: make kubebuilder
23+
24+
- name: Run tests
2225
run: make test
2326

2427
- name: Figure out if running fork PR

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ POSTGRES_CRD_URL ?= https://raw.githubusercontent.com/zalando/postgres-operator/
2727
all: manager
2828

2929
# Run tests
30-
test: generate fmt vet manifests kubebuilder
30+
test: generate fmt vet manifests
3131
go test ./... -coverprofile cover.out -v
3232

3333
# todo: Modify Dockerfile to include the version magic

0 commit comments

Comments
 (0)