https://github.com/akyoto/gotravis
Scripts for testing Go projects on Travis.
https://github.com/akyoto/gotravis
go testing travis
Last synced: about 2 months ago
JSON representation
Scripts for testing Go projects on Travis.
- Host: GitHub
- URL: https://github.com/akyoto/gotravis
- Owner: akyoto
- License: mit
- Created: 2018-06-01T10:22:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-28T07:28:02.000Z (about 7 years ago)
- Last Synced: 2025-10-05T22:54:09.342Z (9 months ago)
- Topics: go, testing, travis
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gotravis
Scripts for testing Go projects on Travis.
## Usage
In your `.travis.yml`:
```yml
language: go
go:
- 1.12.x
- master
install: true
matrix:
allow_failures:
- go: master
fast_finish: true
notifications:
email: false
before_script:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/before-script.sh)
script:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/script.sh)
after_success:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/after-success.sh)
```