22 lines
317 B
YAML
22 lines
317 B
YAML
stages:
|
|
- test
|
|
|
|
sudo: required
|
|
cache: bundler
|
|
language: ruby
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- bundle install
|
|
|
|
env:
|
|
matrix:
|
|
- INSTANCE: default-debian-9-2019-2-py3
|
|
- INSTANCE: default-ubuntu-1804-2019-2-py3
|
|
- INSTANCE: default-centos-7-2019-2-py2
|
|
|
|
script:
|
|
- bundle exec kitchen verify ${INSTANCE}
|