librapi/Makefile
2025-11-24 15:58:29 +01:00

12 lines
160 B
Makefile

test:
go test ./... -race
build: lint
mkdir -p builds
go build -o builds/librapi main.go
lint:
golangci-lint run --fix
run: lint build
docker compose up