Skip to content

Commit

Permalink
Update and rename ruby.yml to rspec.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaltom committed Sep 29, 2019
1 parent 9ececcd commit e461f4c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: rspec

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.3.3
uses: actions/setup-ruby@v1
with:
ruby-version: 2.3.3
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec

0 comments on commit e461f4c

Please sign in to comment.