We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c7ad2f commit 43b3daaCopy full SHA for 43b3daa
.github/workflows/test.yml
@@ -9,14 +9,19 @@ jobs:
9
build-and-test:
10
name: Build and Test
11
runs-on: ubuntu-latest
12
+
13
+ strategy:
14
+ matrix:
15
+ ruby-version: [3.0.x, 2.7.x, 2.6.x]
16
17
steps:
18
- name: Check out code
19
uses: actions/checkout@v2
20
- - name: Setup Ruby
21
+ - name: Setup Ruby ${{ matrix.ruby-version }}
22
uses: ruby/setup-ruby@v1
23
with:
- ruby-version: 2.7.1
24
+ ruby-version: ${{ matrix.ruby-version }}
25
26
- name: Install Ruby Dependencies
27
run: bundle install
0 commit comments