Adding build/test phase for CI

This commit is contained in:
Michael Bolot
2022-10-14 15:02:53 -05:00
parent 7312fe9ef3
commit 7e4a51bda0
4 changed files with 43 additions and 2 deletions

3
scripts/build-bin.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
CGO_ENABLED=0 go build -ldflags "-extldflags -static -s" -o ./bin/steve

3
scripts/test.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
go test ./...