mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
d8022645ba
I don't really see a good reason for running a build against Go tip. This probably made more sense in the earlier days of Golang, but now IMHO it's just wasting cycles for not much benefit. /cc @jen20 @mitchellh
28 lines
301 B
YAML
28 lines
301 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.5
|
|
|
|
install: make updatedeps
|
|
|
|
script:
|
|
- make test
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.org#terraform-tool"
|
|
skip_join: true
|
|
use_notice: true
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: tip
|