diff --git a/Taskfile.yml b/Taskfile.yml index d13b0ff..b34087a 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -11,13 +11,13 @@ tasks: lint: desc: Run linting tools cmds: - - golangci-lint run ./... + - golangci-lint run --allow-parallel-runners ./... - go vet ./... lint-fix: desc: Run linting tools and apply fixes cmds: - - golangci-lint run --fix ./... + - golangci-lint run --allow-parallel-runners --fix ./... test: desc: Run unit tests with race detection