10 lines
202 B
Bash
Executable File
10 lines
202 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# CI build step (kept for the workflow's "Linux Build" name).
|
|
# Now uses modern Go from setup-go in the workflow.
|
|
|
|
set -e
|
|
|
|
echo "Running make build with Go: $(go version)"
|
|
make build
|
|
|