File: .travis.yml

package info (click to toggle)
golang-github-mattn-go-runewidth 0.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports
  • size: 172 kB
  • sloc: sh: 9; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: go
sudo: false
go:
  - 1.13.x
  - tip

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

script:
  - go generate
  - git diff --cached --exit-code
  - ./go.test.sh

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