From 3365fab59ca8a368df4b4452e855eca973eb43c9 Mon Sep 17 00:00:00 2001 From: jerolan Date: Tue, 4 Feb 2020 16:34:06 -0600 Subject: [PATCH] Add workflow file --- .github/workflows/ruby.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ruby.yml diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 0000000..69c59a8 --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,20 @@ +name: Ruby + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Ruby 2.6 + uses: actions/setup-ruby@v1 + with: + ruby-version: 2.6.x + - name: Build and test + run: | + gem install bundler + bundle install --jobs 4 --retry 3 + bundle exec rspec