You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
275 B

.PHONY: build clean test vet
# Build the application
build:
go build -v ./cmd/cursor-id-modifier
# Clean build artifacts
clean:
rm -f cursor-id-modifier
go clean
# Run tests
test:
go test -v ./...
# Run go vet
vet:
go vet ./...
# Run all checks
all: vet test build