add in Ruby
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "Ruby",
|
||||
"description": "Build and test a Ruby project with Rake.",
|
||||
"iconName": "ruby",
|
||||
"category": "Ruby"
|
||||
}
|
||||
+19
@@ -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
|
||||
Reference in New Issue
Block a user