Compare commits

..

2 Commits

Author SHA1 Message Date
7643f37b73 initial version of CLI 2024-11-20 18:47:02 +01:00
root
991739b1ea change 2024-11-20 18:37:40 +01:00
5 changed files with 38 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
bin/
.env
*_templ.go
.idea/

23
Makefile Normal file
View File

@ -0,0 +1,23 @@
.DEFAULT_GOAL := all
# seems superfluous
#.PHONY: fmt vet build clean
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
mkdir -p bin
go build -o bin ./cmd/...
test: build
go test -count=1 -coverprofile=testout/coverage.out ${TESTFLAGS} ./...
clean:
rm -rf bin
all: build

View File

@ -1,2 +1,3 @@
initial version of tools
xxx

7
cmd/go2junit/go2junit.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello")
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.wamblee.org/public/gotools
go 1.23.3