您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.travis.yml 213B

12345678910111213
  1. language: go
  2. go:
  3. - "1.14.x"
  4. before_install:
  5. # https://github.com/travis-ci/travis-ci/issues/8361
  6. - sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
  7. script:
  8. - make
  9. - make test
  10. - make smoke