Last active
May 14, 2020 10:16
-
-
Save IamMohaiminul/262bab48c7bf6dc50bc4f90a1a705bfd to your computer and use it in GitHub Desktop.
Travis CI config for Golang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| branches: | |
| only: | |
| - master | |
| os: | |
| - linux | |
| - osx | |
| language: go | |
| go: | |
| - 1.13.x | |
| - 1.14.x | |
| notifications: | |
| email: | |
| recipients: | |
| - admin@mail.com | |
| - info@mail.com | |
| on_success: always | |
| on_failure: always | |
| before_script: | |
| - make deps | |
| script: | |
| - make test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment