Skip to content

Commit 79a0470

Browse files
committedFeb 7, 2021
Matrix test multiple rubies
1 parent 36ff653 commit 79a0470

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.github/workflows/ruby.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,19 @@ on: [push, pull_request]
55
jobs:
66
test:
77

8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
ruby: [2.5, 2.6, 2.7]
12+
813
runs-on: ubuntu-latest
914

1015
steps:
1116
- uses: actions/checkout@v2
1217
- name: Set up Ruby
1318
uses: ruby/setup-ruby@v1
1419
with:
15-
ruby-version: 2.6
20+
ruby-version: ${{ matrix.ruby }}
1621
- name: Install dependencies
1722
run: bundle install
1823
- name: Run tests

0 commit comments

Comments
 (0)
Please sign in to comment.