mirror of
https://github.com/AthanorLabs/atomic-swap.git
synced 2026-01-10 06:38:04 -05:00
15 lines
219 B
Makefile
15 lines
219 B
Makefile
.PHONY: lint test install build
|
|
all: install
|
|
|
|
lint:
|
|
./scripts/install_lint.sh
|
|
${GOPATH}/bin/golangci-lint run
|
|
|
|
test:
|
|
./scripts/run-unit-tests.sh
|
|
|
|
install:
|
|
cd cmd/ && go install && cd ..
|
|
|
|
build:
|
|
./scripts/build.sh
|