Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions user/languages/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,13 @@ new to Travis CI please read our [Tutorial](/user/tutorial/) and
## Specifying a Go version to use

You can use any tagged version of Go, a version with `x` in place of the minor
or patch level to use the latest for a given major or minor version, or use
`master` to get the latest version from source. All go version management is
handled by [gimme](https://github.com/travis-ci/gimme).
or patch level to use the latest for a given major or minor version, `stable` for the latest stable release, or `master` to get the latest version from source.

All go version management is handled by [gimme](https://github.com/travis-ci/gimme).

> When using `master` to get the latest development version from the [Go repository master branch](https://github.com/golang/go) the installation will take longer than the latest `stable` release.

If you’d like to use the latest stable release you can use `stable` as well, and the installation takes less time.

```yaml
language: go
Expand All @@ -54,6 +57,7 @@ go:
- "1.8"
- "1.10.x"
- master
- stable
```
{: data-file=".travis.yml"}

Expand Down