Files
starter-workflows/ci/ruby.yml
T
Andy McKay 9a95e8f777 add in Ruby
2019-07-29 15:34:10 -07:00

20 lines
362 B
YAML

name: Ruby
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
actions:
- name: Set up Ruby 2.6
uses: actions/setup-ruby@master
with:
version: 2.6.x
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake