chore: add build and test helper scripts

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
This commit is contained in:
OpenCode Test
2025-12-24 13:03:17 -08:00
parent e95536c9f1
commit 9c2a0a3b4d
3 changed files with 26 additions and 0 deletions

6
test_build.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
cd /home/will/lab/tower
go build ./cmd/controltower
echo "Build successful"
go test ./...
echo "Tests completed"