summaryrefslogtreecommitdiffstats
path: root/ci/lint.sh
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-06-24 23:45:45 +0200
committerWim <wim@42.be>2020-06-24 23:45:45 +0200
commitbce736993efdc2501df26a2a773b4999c5580437 (patch)
tree74c9560603be8c3c2faa4241e87bcd17f490e82e /ci/lint.sh
parent56369924460e14f61c389269801247781adf8e84 (diff)
downloadmatterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.gz
matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.bz2
matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.zip
Remove travis as it isn't working anymore
Diffstat (limited to 'ci/lint.sh')
-rwxr-xr-xci/lint.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/ci/lint.sh b/ci/lint.sh
deleted file mode 100755
index dfb504a1..00000000
--- a/ci/lint.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-set -u -e -x -o pipefail
-
-if [[ -n "${GOLANGCI_VERSION-}" ]]; then
- # Retrieve the golangci-lint linter binary.
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b ${GOPATH}/bin ${GOLANGCI_VERSION}
-fi
-
-# Run the linter.
-golangci-lint run
-
-# if [[ "${GO111MODULE-off}" == "on" ]]; then
-# # If Go modules are active then check that dependencies are correctly maintained.
-# go mod tidy
-# go mod vendor
-# git diff --exit-code --quiet || (echo "Please run 'go mod tidy' to clean up the 'go.mod' and 'go.sum' files."; false)
-# fi