Files
bumpversion/Makefile
Ruslan Popov 0a589543ec
All checks were successful
continuous-integration/drone/push Build is passing
Dockerize
2025-03-29 20:40:01 +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 .