Adding makefile and CI

Signed-off-by: Dave Henderson <dhenderson@gmail.com>
This commit is contained in:
Dave Henderson
2020-11-01 14:18:36 -05:00
parent 0edf8e0f00
commit d9e2265891
9 changed files with 256 additions and 2 deletions

8
version/version.go Normal file
View File

@ -0,0 +1,8 @@
package version
var (
// Version will be overwritten automatically by the build
Version = "0.0.0"
// GitCommit will be overwritten automatically by the build
GitCommit = "HEAD"
)