add in Ruby

This commit is contained in:
Andy McKay
2019-07-29 15:34:10 -07:00
parent 093fe05821
commit 9a95e8f777
2 changed files with 25 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
{
"name": "Ruby",
"description": "Build and test a Ruby project with Rake.",
"iconName": "ruby",
"category": "Ruby"
}
+19
View File
@@ -0,0 +1,19 @@
name: Ruby
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
actions:
- name: Set up Ruby 2.6
uses: actions/setup-ruby@master
with:
version: 2.6.x
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake