aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/justfile
blob: 1897cab812c26678648b365ad654008cf526dcce (plain)
1
2
3
4
5
6
7
8
9
check:
    go build -o /dev/null ./...
    go tool golangci-lint run

test:
    go test ./...

gen:
    go generate ./...