We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee36f1 commit 957826dCopy full SHA for 957826d
1 file changed
.github/workflows/ci.yml
@@ -18,14 +18,15 @@ jobs:
18
- Gemfile.rails-6.0-stable
19
- Gemfile.rails-6.1-stable
20
- Gemfile.rails-7.0-stable
21
+ ruby-version: ['3.1', '3.0', '2.7']
22
env:
23
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}
24
steps:
25
- uses: actions/checkout@v3
- - name: Set up Ruby
26
+ - name: Set up Ruby ${{ matrix.ruby-version }}
27
uses: ruby/setup-ruby@v1
28
with:
- ruby-version: ["2.7", "3.0", "3.1"]
29
+ ruby-version: ${{ matrix.ruby-version }}
30
- name: Install dependencies
31
run: bundle install
32
- name: Run tests
0 commit comments