Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,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 tests
Expand All @@ -63,7 +63,7 @@ tasks:
desc: Format the code
cmds:
- go fmt ./...
- golangci-lint run --fix
- golangci-lint run --allow-parallel-runners --fix

deps:
desc: Update dependencies
Expand Down