Files
starter-workflows/ci/ruby.yml
T

22 lines
398 B
YAML
Raw Normal View History

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