1
0
mirror of https://github.com/kidoman/embd synced 2025-03-12 19:21:25 +01:00
embd/.travis.yml

15 lines
258 B
YAML
Raw Normal View History

2014-03-02 02:38:32 +05:30
language: go
2014-04-24 03:03:20 +05:30
branches:
except:
- go-rpi
2014-03-02 02:38:32 +05:30
go:
2016-09-08 22:50:29 -07:00
- 1.6
- 1.7
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
2016-09-08 23:32:02 -07:00
- cd ../embd; go build .