2019-07-29 15:34:10 -07:00
|
|
|
name: Ruby
|
2019-08-06 16:37:30 -07:00
|
|
|
|
2019-07-29 15:34:10 -07:00
|
|
|
on: [push]
|
|
|
|
|
|
2019-08-06 16:37:30 -07:00
|
|
|
jobs:
|
2019-07-29 15:34:10 -07:00
|
|
|
build:
|
2019-08-06 16:37:30 -07:00
|
|
|
|
2019-07-29 15:34:10 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
2019-08-06 16:37:30 -07:00
|
|
|
steps:
|
2019-08-14 10:43:09 -04:00
|
|
|
- uses: actions/checkout@v1
|
2019-07-29 15:34:10 -07:00
|
|
|
- name: Set up Ruby 2.6
|
2019-08-02 10:30:20 -04:00
|
|
|
uses: actions/setup-ruby@v1
|
2019-07-31 16:44:02 -07:00
|
|
|
with:
|
2019-08-14 14:05:28 -04:00
|
|
|
ruby-version: 2.6.x
|
2019-07-29 15:34:10 -07:00
|
|
|
- name: Build and test with Rake
|
|
|
|
|
run: |
|
|
|
|
|
gem install bundler
|
|
|
|
|
bundle install --jobs 4 --retry 3
|
|
|
|
|
bundle exec rake
|