diff --git a/ci/ruby.properties.json b/ci/ruby.properties.json new file mode 100644 index 0000000..59607b9 --- /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..d2c9bdf --- /dev/null +++ b/ci/ruby.yml @@ -0,0 +1,21 @@ +name: Ruby +on: [push] +jobs: + + build: + name: Build + runs-on: ubuntu-latest + steps: + + - uses: actions/checkout@master + + - 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