File: .travis.yml

package info (click to toggle)
golang-github-bep-gitmap 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 96 kB
  • sloc: makefile: 3
file content (14 lines) | stat: -rw-r--r-- 223 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go
sudo: false
go:
  - 1.10.x
  - tip
os:
  - linux
  - osx
script:
  - go test -coverprofile=coverage.txt -covermode=atomic
install:
  - go get -v ./...
after_success:
  - bash <(curl -s https://codecov.io/bash)