File: .travis.yml

package info (click to toggle)
golang-github-araddon-dateparse 0.0~git20210207.0eec95c-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports
  • size: 224 kB
  • sloc: makefile: 3
file content (13 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: go

go:
  - 1.13.x

before_install:
  - go get -t -v ./...

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

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