mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
28 lines
541 B
YAML
28 lines
541 B
YAML
---
|
|
sudo: required
|
|
language: ruby
|
|
cache: bundler
|
|
|
|
# necessary for docker to work
|
|
dist: trusty
|
|
services:
|
|
- docker
|
|
|
|
bundler_args: --without integration tools maintenance
|
|
|
|
before_install:
|
|
- gem update --system 2.4.5
|
|
- gem --version
|
|
|
|
matrix:
|
|
include:
|
|
- rvm: 1.9.3
|
|
gemfile: Gemfile
|
|
- rvm: 2.0
|
|
gemfile: Gemfile
|
|
- rvm: 2.2
|
|
gemfile: Gemfile
|
|
script: bundle exec rake lint test test:resources config=test/test.yaml
|
|
- rvm: 2.2
|
|
gemfile: Gemfile
|
|
script: bundle exec rake test:resources config=test/test-extra.yaml
|