We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 947bf00 + b25952a commit e82f7b6Copy full SHA for e82f7b6
.travis.yml
@@ -14,10 +14,17 @@ script:
14
- go test -v -race ./... -coverprofile=profile.cov
15
- $GOPATH/bin/goveralls -coverprofile=profile.cov -service=travis-ci
16
stages:
17
+ - 'Lint'
18
- 'Integration tests'
19
- 'Test'
20
jobs:
21
include:
22
+ - stage: 'Lint'
23
+ install:
24
+ - go get github.com/golangci/golangci-lint/cmd/golangci-lint
25
+ script:
26
+ - golangci-lint run --out-format=tab --tests=false optimizely/...
27
+
28
- stage: 'Integration Tests'
29
merge_mode: replace
30
env: SDK=go
@@ -29,4 +36,4 @@ jobs:
36
script:
37
- "$HOME/travisci-tools/fsc-trigger/trigger_fullstack-sdk-compat.sh"
31
38
after_success: travis_terminate 0
32
-
39
0 commit comments