librapi/Makefile
2025-11-24 16:10:55 +01:00

12 lines
168 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 --build