...

Text file src/github.com/henvic/httpretty/scripts/install-ci.sh

Documentation: github.com/henvic/httpretty/scripts

     1#!/bin/bash
     2set -euox pipefail
     3
     4# TODO(henvic): install specific versions of the commands
     5# when the 3 latest releases of the Go toolchains supports it using @tag.
     6go install github.com/mattn/goveralls
     7go install golang.org/x/lint/golint
     8go install honnef.co/go/tools/cmd/staticcheck
     9go install github.com/securego/gosec/cmd/gosec
    10go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow

View as plain text