https://github.com/google/cayley
Revision 3526ec440de383b2d57095d359f3b21f528f5cff authored by Willy Aguirre on 25 September 2019, 01:01:31 UTC, committed by Denys Smirnov on 28 September 2019, 13:59:09 UTC
1 parent 6a92c34
Raw File
Tip revision: 3526ec440de383b2d57095d359f3b21f528f5cff authored by Willy Aguirre on 25 September 2019, 01:01:31 UTC
docs: update Contributing.md; fixes #782
Tip revision: 3526ec4
.travis.yml
language: go

addons:
  apt:
    packages:
      - snapd

go:
  - "1.12.x"
  - tip

matrix:
  allow_failures:
    - go: tip

install:
  - sudo snap install snapcraft --classic
  - GO111MODULE=on go mod download

cache:
  directories:
    - $GOPATH/pkg/mod

script:
  - GO111MODULE=on go test -v ./...

# TODO(dennwc): snapcraft config
#after_success:
#  - test -n "$TRAVIS_TAG" && snapcraft login --with snap.login

deploy:
  - provider: script
    skip_cleanup: true
    script: curl -sL https://git.io/goreleaser | bash
    on:
      tags: true
      condition: $TRAVIS_OS_NAME = linux
back to top