liquor-cabinet/.travis.yml
2018-05-09 16:18:22 +02:00

27 lines
500 B
YAML

language: ruby
cache: bundler
rvm:
- 2.4.1
services:
- redis-server
before_script:
- cp config.yml.example.$BACKEND config.yml
- mkdir -p tmp && echo "swifttoken" > tmp/swift_token.txt
script: ruby spec/$BACKEND/*
branches:
only:
- master
- stable
notifications:
email: false
webhooks:
urls:
- http://hook-juggler.herokuapp.com/hooks/travis
on_success: always
on_failure: always
env:
- BACKEND=s3
- BACKEND=swift
# Run on Docker infrastructure
sudo: false