File: .travis.yml

package info (click to toggle)
golang-github-alcortesm-tgz 0.0~git20161220.9c5fe88-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 96 kB
  • sloc: makefile: 3
file content (13 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: go

go:
    - tip

before_install:
    - go get golang.org/x/tools/cmd/cover

script:
    - go test -coverprofile=coverage.txt -covermode=atomic

after_success:
    - bash <(curl -s https://codecov.io/bash)