Some checks reported errors
continuous-integration/drone/push Build was killed
22 lines
247 B
Makefile
22 lines
247 B
Makefile
EXEC=bumpversion.run
|
|
|
|
all: build
|
|
|
|
fix:
|
|
@go fix ./...
|
|
|
|
build: fix
|
|
@go build -o ./${EXEC} ./src
|
|
|
|
tests: build
|
|
@go test ./...
|
|
|
|
run:
|
|
@./${EXEC}
|
|
|
|
clean:
|
|
@rm -rf ./${EXEC}%
|
|
|
|
image:
|
|
docker build --compress -t rad/bumpversion:latest -f Dockerfile .
|