File: .travis.yml

package info (click to toggle)
golang-github-go-restruct-restruct 1.2.0-alpha-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 344 kB
  • sloc: makefile: 2
file content (12 lines) | stat: -rw-r--r-- 390 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
language: go
go:
  - '1.7'
  - '1.11'
  - '1.12'
  - '1.13'
  - tip
script:
  - go test -coverprofile=coverage.txt -covermode=atomic
  - "if [[ $TRAVIS_GO_VERSION == 1.13 ]]; then bash <(curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh) -b $(go env GOPATH)/bin v1.20.0 && golangci-lint run; fi"
after_success:
  - bash <(curl -s https://codecov.io/bash)