0ebb8a21a1
Clean Up Testing and Linting * somescriptcleanup * mostgolangci * deplatest * imageversions * usingscratch * movedqueuefrtesting * finishedunittesting * linting * taskfilecontext
28 lines
936 B
YAML
28 lines
936 B
YAML
---
|
|
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
tasks:
|
|
install:
|
|
cmds:
|
|
- go install golang.org/x/tools/cmd/godoc@v0.29.0
|
|
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.62.2
|
|
- go install github.com/yoheimuta/protolint/cmd/protolint@v0.52.0
|
|
- go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.0
|
|
- go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.5.1
|
|
- go install github.com/zabio3/godolint@v1.0.3
|
|
- go install github.com/wasilibs/go-yamllint/cmd/yamllint@v1.35.1
|
|
- go install github.com/sqlc-dev/sqlc/cmd/sqlc@v1.27.0
|
|
- |
|
|
go install -tags 'postgres' \
|
|
github.com/golang-migrate/migrate/v4/cmd/migrate@v4.18.1
|
|
- go install github.com/vektra/mockery/v2@v2.50.0
|
|
- curl -sfL https://direnv.net/install.sh | bash
|
|
- direnv allow
|
|
- go mod download
|
|
tidy:
|
|
cmds:
|
|
- go mod tidy
|
|
- go mod vendor
|