Files
bumpversion/Makefile
Ruslan Popov b02423d6d1
Some checks reported errors
continuous-integration/drone/push Build was killed
Dockerize
2025-03-29 20:32:02 +03:00

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 .