linux-bench/.travis.yml

29 lines
426 B
YAML
Raw Permalink Normal View History

---
language: go
notifications:
email: false
2019-08-06 23:46:28 +03:00
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y rpm
script:
2019-08-07 14:02:16 +03:00
- make tests
2019-08-06 23:46:28 +03:00
after_success:
- bash <(curl -s https://codecov.io/bash)
2019-12-17 02:48:37 +02:00
deploy:
- provider: script
skip_cleanup: true
script: curl -sL https://git.io/goreleaser | bash
on:
tags: true
condition: "$TRAVIS_OS_NAME = linux"
2019-08-06 23:46:28 +03:00
env:
matrix:
- GO111MODULE=on