File: .travis.yml

package info (click to toggle)
golang-github-tealeg-xlsx 1.0.3%2Bgit20181024.dbf71b6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 19,088 kB
  • sloc: makefile: 2
file content (14 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go

go:
  - 1.8.x
  - 1.9.x
  - 1.10.x
  - 1.11.x

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

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