https://github.com/google/cayley
Raw File
Tip revision: 3ffe4882e2f3545ec0aa66863d0f60e6ca09283f authored by Denys Smirnov on 14 October 2019, 05:32:08 UTC
gizmo: accept a single value in save(); proper tags in JSON-LD; fix #856
Tip revision: 3ffe488
.travis.yml
language: go

addons:
  apt:
    packages:
      - snapd

go:
  - "1.12.x"
  - tip

matrix:
  allow_failures:
    - go: tip

install:
  - sudo snap install snapcraft --classic
  - go get -u github.com/gobuffalo/packr/v2/packr2
  - GO111MODULE=on go mod download

cache:
  directories:
    - $GOPATH/pkg/mod

script:
  - packr2 && 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