Add convenience scripts for building and running tests: - quick_build.sh: Fast build without tests - run_tests.sh: Run all tests - test_build.sh: Full build with tests
7 lines
125 B
Bash
7 lines
125 B
Bash
#!/bin/bash
|
|
cd /home/will/lab/tower
|
|
go build ./cmd/controltower
|
|
echo "Build successful"
|
|
go test ./...
|
|
echo "Tests completed"
|