test different ruby versions & engines

This commit is contained in:
Colby Swandale 2020-05-16 12:44:07 +10:00
parent a9b2d51be2
commit 66c0c36c42

View file

@ -8,6 +8,9 @@ on:
jobs:
test:
strategy:
matrix:
ruby: [2.5, 2.6, 2.7, jruby, truffleruby]
runs-on: ubuntu-latest
steps:
- name: Install dependencies
@ -16,6 +19,8 @@ jobs:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests