mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-19 18:05:02 -07:00
202cdae831
* Switch to non-verbose test output in Makefile * Create pluginindex package with PluginIndex struct with methods for updating index and retrieving plugin URLs * Create IndexRepo interface to allow for easy testing out cloning real Git repository.
38 lines
593 B
Makefile
38 lines
593 B
Makefile
MAIN_PACKAGE_PATH := .
|
|
TARGET_DIR := .
|
|
TARGET := asdf
|
|
|
|
# Not sure what the default location should be for builds
|
|
build: test lint
|
|
go build -o=${TARGET_DIR}/${TARGET} ${MAIN_PACKAGE_PATH}
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
gofumpt -l -w .
|
|
|
|
verify:
|
|
go mod verify
|
|
|
|
tidy:
|
|
go mod tidy -v
|
|
|
|
audit: verify vet test
|
|
|
|
test:
|
|
go test -coverprofile=/tmp/coverage.out -bench= -race ./...
|
|
|
|
cover: test
|
|
go tool cover -html=/tmp/coverage.out
|
|
|
|
lint: fmt
|
|
staticcheck -tests -show-ignored ./...
|
|
revive -set_exit_status ./...
|
|
|
|
vet: fmt
|
|
go vet .
|
|
|
|
run: build
|
|
${TARGET_DIR}/${TARGET}
|
|
|
|
.PHONY: fmt lint vet build test run
|