mirror of
https://github.com/colby-swandale/waterfoul
synced 2024-11-15 19:47:58 +01:00
test different ruby versions & engines
This commit is contained in:
parent
a9b2d51be2
commit
66c0c36c42
1 changed files with 5 additions and 0 deletions
5
.github/workflows/ruby.yml
vendored
5
.github/workflows/ruby.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue