mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
24 lines
418 B
YAML
24 lines
418 B
YAML
# Configuration for https://travis-ci.org/
|
|
|
|
language: go
|
|
go_import_path: blitiri.com.ar/go/chasquid
|
|
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
- tip
|
|
|
|
|
|
# This is needed because the repository has a Makefile, so travis won't invoke
|
|
# "go get" by default.
|
|
install:
|
|
- go get blitiri.com.ar/go/chasquid
|
|
- go get blitiri.com.ar/go/chasquid/cmd/chasquid-util
|
|
|
|
|
|
script:
|
|
- make all
|
|
- go test ./...
|
|
- go test -race ./...
|
|
|