We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ae4dfb commit 3b97329Copy full SHA for 3b97329
.github/workflows/release.yml
@@ -16,8 +16,7 @@ jobs:
16
17
- run: |
18
apt-get update && \
19
- apt-get install -y hub zip && \
20
- go get -u golang.org/x/lint/golint
+ apt-get install -y hub zip
21
22
23
./build.sh
build.sh
@@ -13,7 +13,6 @@ declare -A PLATFORMS=([linux]=linux [darwin]=macos [windows]=windows)
13
declare -A ARCHITECTURES=([386]=i386 [amd64]=amd64 [arm]=arm [arm64]=arm64)
14
15
# Run tests first
-golint -set_exit_status ./... || exit 1
go vet ./... || exit 1
go test ./... || exit 1
0 commit comments