Skip to content

Commit

Permalink
Add ruby workflow for actions.
Browse files Browse the repository at this point in the history
tatey committed May 11, 2020
1 parent 4b51ea8 commit a117707
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Ruby

on: [ push, pull_request ]

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake

0 comments on commit a117707

Please sign in to comment.