#!/bin/bash

set -eux -o pipefail

go install mvdan.cc/gofumpt@latest
go install golang.org/x/tools/cmd/goimports@latest

curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh |
    sh -s -- -b "$(go env GOPATH)/bin" latest
