10 lines
No EOL
283 B
Bash
10 lines
No EOL
283 B
Bash
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
go get -u ./...
|
|
go mod tidy
|
|
go fmt ./...
|
|
|
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.62.0
|
|
$(go env GOPATH)/bin/golangci-lint --version
|
|
$(go env GOPATH)/bin/golangci-lint run |