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