Skip to content

Commit d099dee

Browse files
committed
go build .
1 parent 3a16f8f commit d099dee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Build project with error handling
4545
run: |
4646
echo "==== Building Project ===="
47-
if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
47+
if ! go build -o basic-docker .; then
4848
echo "Error: Build failed. Please check the errors above." >&2
4949
exit 1
5050
fi

verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mkdir -p "$IMAGES_DIR"
1212

1313
# Build the basic-docker binary with error handling
1414
echo "==== Building Project ===="
15-
if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
15+
if ! go build -o basic-docker .; then
1616
echo "Error: Build failed. Please check the errors above." >&2
1717
exit 1
1818
fi

0 commit comments

Comments
 (0)