chore: add check task for CI

This commit is contained in:
Mathias Bergqvist
2026-05-05 07:52:39 +02:00
parent a8d04242d9
commit 09b3f25211

View File

@@ -14,3 +14,9 @@ tasks:
lint:
desc: Run golangci-lint
cmds: [golangci-lint run ./...]
check:
desc: Lint, vet, and test (used by CI)
cmds:
- golangci-lint run ./...
- go vet ./...
- go test ./... -race -count=1