mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-26 22:34:44 +01:00
29 lines
448 B
YAML
29 lines
448 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.8.3
|
|
|
|
python:
|
|
- "3.4"
|
|
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
|
|
install:
|
|
- make setup
|
|
- go get -t ./...
|
|
- pip install --user Pygments
|
|
- export PATH=$HOME/.local/bin:$PATH
|
|
|
|
script:
|
|
- $HOME/gopath/bin/goveralls -service=travis-ci
|
|
- make lint
|
|
|
|
after_success:
|
|
- test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|