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

test:
    go test ./...

ci: check test