mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-10 07:00:08 +00:00
11 lines
290 B
Makefile
11 lines
290 B
Makefile
default: check
|
|
|
|
check:
|
|
go test && go test -compiler gccgo
|
|
|
|
docs:
|
|
godoc2md github.com/juju/errors > README.md
|
|
sed -i 's|\[godoc-link-here\]|[![GoDoc](https://godoc.org/github.com/juju/errors?status.svg)](https://godoc.org/github.com/juju/errors)|' README.md
|
|
|
|
|
|
.PHONY: default check docs
|