9 lines
201 B
Bash
9 lines
201 B
Bash
|
|
#!/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
|