s3manager-web/Makefile
2021-08-17 15:44:49 +02:00

24 lines
258 B
Makefile

.PHONY: build
build:
go build -o bin/s3manager
.PHONY: run
run:
go run
.PHONY: lint
lint:
golangci-lint run
.PHONY: test
test:
go test -race -cover ./...
.PHONY: build-image
build-image:
docker build -t s3manager .
.PHONY: clean
clean:
rm -rf bin