16 lines
395 B
YAML
16 lines
395 B
YAML
language: ruby
|
|
rvm:
|
|
- 2.4.1
|
|
|
|
before_script:
|
|
- chmod +x ./.github/ci_build # or do this locally and commit
|
|
|
|
# Assume bundler is being used, therefore
|
|
# the `install` step will run `bundle install` by default.
|
|
script: ./.github/ci_build
|
|
|
|
|
|
sudo: false # route your build to the container-based infrastructure for a faster build
|
|
|
|
cache: bundler # caching bundler gem packages will speed up build
|