mirror of
https://github.com/vbatts/sl-feeds.git
synced 2024-11-26 01:15:40 +00:00
Vincent Batts
1e64d04b15
Not great, but gcc-go 1.14.4 is not picking up the go.mod file on the first `go get` Fixes #16 Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
19 lines
289 B
Makefile
19 lines
289 B
Makefile
install:
|
|
go install ./...
|
|
|
|
test: install
|
|
go test -v
|
|
toml-test toml-test-decoder
|
|
toml-test -encoder toml-test-encoder
|
|
|
|
fmt:
|
|
gofmt -w *.go */*.go
|
|
colcheck *.go */*.go
|
|
|
|
tags:
|
|
find ./ -name '*.go' -print0 | xargs -0 gotags > TAGS
|
|
|
|
push:
|
|
git push origin master
|
|
git push github master
|
|
|