File: .travis.yml

package info (click to toggle)
garagemq 0.0~git20200204.15e6a9d%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,836 kB
  • sloc: xml: 4,990; javascript: 989; makefile: 29
file content (21 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: go

sudo: false

go:
- "1.11.x"
- tip

env:
  - GO111MODULE=on

install: true

before_install:
  - go get golang.org/x/tools/cmd/cover
  - go get github.com/mattn/goveralls

script:
  - ulimit -n 2048 ; go test -v ./... -covermode=count -coverprofile=profile.cov.tmp
  - cat profile.cov.tmp | grep -v "generated" | grep -v "admin" > profile.cov
  - $GOPATH/bin/goveralls -coverprofile=profile.cov -service=travis-ci