mirror of
https://github.com/jimeh/rbheap.git
synced 2026-02-19 04:46:40 +00:00
21 lines
320 B
YAML
21 lines
320 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.10"
|
|
|
|
install:
|
|
- "curl -L https://github.com/golang/dep/raw/master/install.sh | sh"
|
|
- "dep ensure"
|
|
|
|
script:
|
|
- make test
|
|
- make
|
|
|
|
deploy:
|
|
- provider: script
|
|
skip_cleanup: true
|
|
script: curl -sL https://git.io/goreleaser | bash
|
|
on:
|
|
tags: true
|
|
condition: $TRAVIS_OS_NAME = linux
|