forked from mefistotelis/psx_mnd_sym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (31 loc) · 1.01 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: go
notifications:
email: false
env:
global:
- PATH=$HOME/gopath/bin:$PATH
# CodeClimate
- CC_TEST_REPORTER_ID=2e4258ff662853e6ab49ea3563a04390b2575449d5bfea63f3f678924dd9556d
before_install:
- go get -u golang.org/x/tools/cmd/cover
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/lint/golint
- go get -u github.com/mattn/goveralls
- go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
install:
- go get -t -v ./...
before_script:
- wget https://gist.github.com/mewmew/379014c9a2e6885e238d/raw/goclean.sh
- chmod +x goclean.sh
# CodeClimate
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- ./goclean.sh
- golangci-lint run --enable-all -D "lll,maligned"
# CodeClimate
- go test -coverprofile c.out ./...
after_script:
# CodeClimate
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT