We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88a35fa commit 4932952Copy full SHA for 4932952
2 files changed
.github/workflows/test.yml
@@ -42,7 +42,7 @@ jobs:
42
- name: Build project with error handling
43
run: |
44
echo "==== Building Project ===="
45
- if ! go build -o basic-docker main.go network.go image.go; then
+ if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
46
echo "Error: Build failed. Please check the errors above." >&2
47
exit 1
48
fi
verify.sh
@@ -12,7 +12,7 @@ mkdir -p "$IMAGES_DIR"
12
13
# Build the basic-docker binary with error handling
14
15
-if ! go build -o basic-docker main.go network.go image.go; then
+if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
16
17
18
0 commit comments