Skip to content

Commit

Permalink
Merge branch 'add_github_actions'
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonkn committed Sep 4, 2019
2 parents a8bbbf4 + 837d385 commit 23ccecb
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]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
version: 2.6.x
- name: Build
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: lint
run: bundle exec rubocop
- name: rspec
run: bundle exec rspec

0 comments on commit 23ccecb

Please sign in to comment.