Skip to content

Commit 957826d

Browse files
committed
Fix incorrect format for CI with multiple Rubys
1 parent 1ee36f1 commit 957826d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ jobs:
1818
- Gemfile.rails-6.0-stable
1919
- Gemfile.rails-6.1-stable
2020
- Gemfile.rails-7.0-stable
21+
ruby-version: ['3.1', '3.0', '2.7']
2122
env:
2223
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}
2324
steps:
2425
- uses: actions/checkout@v3
25-
- name: Set up Ruby
26+
- name: Set up Ruby ${{ matrix.ruby-version }}
2627
uses: ruby/setup-ruby@v1
2728
with:
28-
ruby-version: ["2.7", "3.0", "3.1"]
29+
ruby-version: ${{ matrix.ruby-version }}
2930
- name: Install dependencies
3031
run: bundle install
3132
- name: Run tests

0 commit comments

Comments
 (0)