Skip to content

Commit

Permalink
Create ruby.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oieioi committed Apr 21, 2020
1 parent 305774e commit 1f1dd4a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ruby.yml
@@ -0,0 +1,25 @@
name: Ruby

on:
push:
branches: [ github-action ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

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

0 comments on commit 1f1dd4a

Please sign in to comment.