11 lines
122 B
Makefile
11 lines
122 B
Makefile
default:
|
|
just --list
|
|
|
|
test:
|
|
go test -race -v ./...
|
|
|
|
lint:
|
|
golangci-lint run
|
|
|
|
fmt:
|
|
golangci-lint run --fix
|