File: .travis.yml

package info (click to toggle)
golang-github-valyala-gozstd 1.17.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 280 kB
  • sloc: makefile: 77
file content (21 lines) | stat: -rw-r--r-- 359 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

os:
  - linux
  - osx
  - freebsd
  
go:
  - 1.14

script:
  # build test for supported platforms
  - GOARCH=amd64 go build

  # run tests on a standard platform
  - go test -v -coverprofile=coverage.txt -covermode=atomic
  - go test -v -race

after_success:
  # Upload coverage results to codecov.io
  - bash <(curl -s https://codecov.io/bash)