mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-05 12:23:43 +03:00
12 lines
290 B
Makefile
12 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\]|[](https://godoc.org/github.com/juju/errors)|' README.md
|
||
|
|
||
|
|
||
|
.PHONY: default check docs
|