Create new type and remove un-used code
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Failing after 11s

This commit is contained in:
2025-01-12 19:33:57 -06:00
parent 434d3fed1b
commit 03a47deade
740 changed files with 498069 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
default: build
build: test
mkdir -p bin
go build ./tml/ -o bin/tml
build-travis: test
mkdir -p bin/linux-amd64/tml
mkdir -p bin/darwin-amd64/tml
GOOS=linux GOARCH=amd64 go build -o bin/linux-amd64/tml -ldflags "-X github.com/liamg/tml/version.Version=${TRAVIS_TAG}" ./tml
GOOS=darwin GOARCH=amd64 go build -o bin/darwin-amd64/tml -ldflags "-X github.com/liamg/tml/version.Version=${TRAVIS_TAG}" ./tml
test:
go vet ./...
go test -v ./...
.PHONY: build test