Skip to content

Commit

Permalink
Set up GitHub Actions for testing
Browse files Browse the repository at this point in the history
The step to respect `.ruby-version` is taken from
actions/setup-ruby#31 (comment).
  • Loading branch information
lawrence-forooghian committed Mar 26, 2020
1 parent 87e6483 commit 3b48772
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Ruby

on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Check out repository"
uses: actions/checkout@v2
- name: "Get Ruby version from .ruby-version"
run: echo "::set-output name=RUBY_VERSION::$(cat .ruby-version)"
id: rbenv
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: "${{ steps.rbenv.outputs.RUBY_VERSION }}"
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake

0 comments on commit 3b48772

Please sign in to comment.