We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df8c951 commit 7aa83dfCopy full SHA for 7aa83df
.github/actions/run-tests/Dockerfile
@@ -17,6 +17,9 @@ RUN set -eux; \
17
RUN groupadd -g 116 test && \
18
useradd -u 1001 --gid test --shell /bin/sh --create-home test
19
20
+# Set path to envtest binaries.
21
+ENV PATH="/github/workspace/envtest:${PATH}"
22
+
23
# Run as test user
24
USER test
25
Makefile
@@ -74,6 +74,7 @@ vet:
74
75
# Generate code
76
generate: controller-gen
77
+ echo $(PATH)
78
cd api; $(CONTROLLER_GEN) object:headerFile="../hack/boilerplate.go.txt" paths="./..."
79
80
# Build the docker image
0 commit comments