Files
gitlab.nvim/makefile
Harrison (Harry) Cramer f906af0c3a Release (#256)
* fix: Jumping to wrong buffer (#261)
* fix: Go to last line and show warning when diagnostic is past the end of buffer (#262)
* fix: Get recent pipeline through other means (#266)
* feat: Add keymaps and linewise actions to layouts (#265)

This is a #MINOR release, because we are introducing new keybindings for the comment/note popups.

---------

Co-authored-by: Jakub F. Bortlík <jakub.bortlik@proton.me>
Co-authored-by: sunfuze <sunfuze.1989@gmail.com>
2024-04-15 09:56:21 -04:00

20 lines
375 B
Makefile

default: help
PROJECTNAME=$(shell basename "$(PWD)")
## compile: build golang project
compile:
@cd cmd && go build -o bin && mv bin ../bin
## test: run golang project tests
test:
@cd cmd && go test
.PHONY: help
all: help
help: makefile
@echo
@echo " Choose a command run in "$(PROJECTNAME)":"
@echo
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo