Makefile 290 B

1234567891011
  1. default: check
  2. check:
  3. go test && go test -compiler gccgo
  4. docs:
  5. godoc2md github.com/juju/errors > README.md
  6. 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
  7. .PHONY: default check docs