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 53a08d6 commit 2ba3845Copy full SHA for 2ba3845
.github/workflows/ruby.yml
@@ -17,16 +17,17 @@ jobs:
17
test:
18
19
runs-on: ubuntu-latest
20
+
21
+ strategy:
22
+ matrix:
23
+ ruby-version: [3.0.x, 2.7.x, 2.6.x, 2.5.x]
24
25
steps:
26
- uses: actions/checkout@v2
- - name: Set up Ruby
- # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
- # change this to (see https://github.com/ruby/setup-ruby#versioning):
- # uses: ruby/setup-ruby@v1
27
+ - name: Set up Ruby ${{ matrix.ruby-version }}
28
uses: ruby/setup-ruby@v1
29
with:
- ruby-version: 2.6
30
+ ruby-version: ${{ matrix.ruby-version }}
31
- name: Install dependencies
32
run: bundle install
33
- name: Compile
0 commit comments