Skip to content

Commit

Permalink
Merge 6e14add into b0c9b23
Browse files Browse the repository at this point in the history
  • Loading branch information
psyomn committed Feb 11, 2020
2 parents b0c9b23 + 6e14add commit bbf9761
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Ruby

on: [push]

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: |
sudo apt-get install libsqlite3-dev
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake

0 comments on commit bbf9761

Please sign in to comment.