mirror of
https://github.com/42wim/matterbridge
synced 2024-11-11 01:10:38 +00:00
Upgrade linter and travis to go1.13 (#949)
This commit is contained in:
parent
075ca9ca47
commit
aae45a8179
@ -174,6 +174,7 @@ linters:
|
|||||||
- lll
|
- lll
|
||||||
- maligned
|
- maligned
|
||||||
- prealloc
|
- prealloc
|
||||||
|
- wsl
|
||||||
|
|
||||||
|
|
||||||
# rules to deal with reported isues
|
# rules to deal with reported isues
|
||||||
|
10
.travis.yml
10
.travis.yml
@ -20,22 +20,22 @@ jobs:
|
|||||||
- stage: lint
|
- stage: lint
|
||||||
# Run linting in one Go environment only.
|
# Run linting in one Go environment only.
|
||||||
script: ./ci/lint.sh
|
script: ./ci/lint.sh
|
||||||
go: 1.12.x
|
go: 1.13.x
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=on
|
- GO111MODULE=on
|
||||||
- GOLANGCI_VERSION="v1.17.1"
|
- GOLANGCI_VERSION="v1.21.0"
|
||||||
- stage: test
|
- stage: test
|
||||||
# Run tests in a combination of Go environments.
|
# Run tests in a combination of Go environments.
|
||||||
script: ./ci/test.sh
|
script: ./ci/test.sh
|
||||||
go: 1.11.x
|
go: 1.12.x
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=off
|
- GO111MODULE=off
|
||||||
- script: ./ci/test.sh
|
- script: ./ci/test.sh
|
||||||
go: 1.11.x
|
go: 1.12.x
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=on
|
- GO111MODULE=on
|
||||||
- script: ./ci/test.sh
|
- script: ./ci/test.sh
|
||||||
go: 1.12.x
|
go: 1.13.x
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=on
|
- GO111MODULE=on
|
||||||
- REPORT_COVERAGE=1
|
- REPORT_COVERAGE=1
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -u -e -x -o pipefail
|
set -u -e -x -o pipefail
|
||||||
|
|
||||||
go version | grep go1.12 || exit
|
go version | grep go1.13 || exit
|
||||||
|
|
||||||
VERSION=$(git describe --tags)
|
VERSION=$(git describe --tags)
|
||||||
mkdir ci/binaries
|
mkdir ci/binaries
|
||||||
|
Loading…
Reference in New Issue
Block a user