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

test:
    go test ./...

gen:
    go generate ./...

ci: check test