mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 10:08:31 -05:00
20 lines
261 B
Makefile
20 lines
261 B
Makefile
.PHONY: lint
|
|
lint:
|
|
go tool golangci-lint run
|
|
|
|
.PHONY: vendor
|
|
vendor:
|
|
go mod tidy
|
|
go mod vendor
|
|
|
|
format:
|
|
go tool gofumpt -extra -w .
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
go clean -i ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -race -cover -coverprofile coverage.out -timeout 60s .
|