https://github.com/google/cayley
Raw File
Tip revision: 1acc521bedf510f511b95e277fb2c96e40ac4e5d authored by Iddan Aaronsohn on 17 September 2019, 21:54:55 UTC
Make constructors capitalised
Tip revision: 1acc521
.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