Compare commits
No commits in common. "7643f37b739da471b3bd56ac4133e9b4c540175e" and "47df0cc2d9ab9773521165b00d73dc2bcab61130" have entirely different histories.
7643f37b73
...
47df0cc2d9
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,4 +0,0 @@
|
|||||||
bin/
|
|
||||||
.env
|
|
||||||
*_templ.go
|
|
||||||
.idea/
|
|
23
Makefile
23
Makefile
@ -1,23 +0,0 @@
|
|||||||
.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
|
|
@ -1,7 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
fmt.Println("Hello")
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user