From 9a95e8f777498ab7233321f60e8fbb8e13ffc8fa Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Mon, 29 Jul 2019 15:34:10 -0700 Subject: [PATCH] add in Ruby --- ci/ruby.properties.json | 6 ++++++ ci/ruby.yml | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 ci/ruby.properties.json create mode 100644 ci/ruby.yml diff --git a/ci/ruby.properties.json b/ci/ruby.properties.json new file mode 100644 index 0000000..a2d6f84 --- /dev/null +++ b/ci/ruby.properties.json @@ -0,0 +1,6 @@ +{ + "name": "Ruby", + "description": "Build and test a Ruby project with Rake.", + "iconName": "ruby", + "category": "Ruby" +} \ No newline at end of file diff --git a/ci/ruby.yml b/ci/ruby.yml new file mode 100644 index 0000000..b756c68 --- /dev/null +++ b/ci/ruby.yml @@ -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