1
0
mirror of https://github.com/kidoman/embd synced 2024-05-28 06:40:06 +02:00
embd/.travis.yml
Karan Misra 0c193071ed ci: fix travis.yml so that failure is captured properly
subtle errors in the config were causing test failures to be ignored
2014-04-06 04:06:22 +05:30

11 lines
207 B
YAML

language: go
go:
- 1.2
- 1.2.1
- tip
script:
- go test -bench=. -v ./... | grep -v 'no test files' ; test ${PIPESTATUS[0]} -eq 0
- cd samples; find . -name "*.go" -print0 | xargs -0 -n1 go build