Files
Marwan Sulaiman 322ff26694 Do not download modules during CI build (#815)
* Do not download modules during CI build

* install golint in non module system

* Use vendor in tests + update vendor dir

* mod tidy
2018-10-24 14:34:06 -07:00

8 lines
179 B
Bash
Executable File

#!/bin/bash
# check_golint.sh
# Run the linter on everything except generated code
set -euo pipefail
golint -set_exit_status $(GO111MODULE=off go list ./... | grep -v '/mocks')