Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/gohugoio/go-i18n.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92aa153bd85a7b2aa0e95fe086253ab30bcd1bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: go

matrix:
  include:
    - go: 1.9.x
      env: GO111MODULE=on
    - go: 1.12.x
      env: GO111MODULE=on COVER='-coverprofile=coverage.txt -covermode=atomic'

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

script:
  - go test -race $COVER ./...

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