Files
starter-workflows/ci/ruby.yml
T

25 lines
449 B
YAML
Raw Normal View History

2019-07-29 15:34:10 -07:00
name: Ruby
2019-08-06 16:37:30 -07:00
2020-02-12 13:26:01 -05:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
2019-07-29 15:34:10 -07:00
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-12-24 14:22:22 -08:00
- uses: actions/checkout@v2
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