23 lines
315 B
YAML
23 lines
315 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.2
|
|
- 1.3
|
|
- tip
|
|
|
|
install: make updatedeps
|
|
script:
|
|
- make test
|
|
#- go test -race ./...
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#packer-tool"
|
|
on_success: change
|
|
on_failure: always
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|