mirror of
https://github.com/gogs/gogs.git
synced 2026-02-08 23:47:02 +01:00
12 lines
135 B
Makefile
Executable File
12 lines
135 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
test:
|
|
go test -timeout=1s -short ./...
|
|
|
|
compile:
|
|
go build ./...
|
|
|
|
build: test compile
|
|
|
|
.PHONY: test compile build
|