Skip to content

Commit cea19ac

Browse files
authored
ci: test against Ruby 4.0 (#87)
Add Ruby 4.0 to the CI build matrix, run the fixed-version type-check job on Ruby 4.0, and quote all version numbers for consistency.
1 parent 86e121d commit cea19ac

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ jobs:
1212
strategy:
1313
matrix:
1414
ruby:
15-
- 3.3
16-
- 3.4
15+
- '3.3'
16+
- '3.4'
17+
- '4.0'
1718
env:
1819
BUNDLE_GEMFILE: Gemfile
1920
name: "RSpec tests: Ruby ${{ matrix.ruby }}"
@@ -31,8 +32,9 @@ jobs:
3132
strategy:
3233
matrix:
3334
ruby:
34-
- 3.3
35-
- 3.4
35+
- '3.3'
36+
- '3.4'
37+
- '4.0'
3638
env:
3739
BUNDLE_GEMFILE: Gemfile
3840
name: "Visual Regression Suite: Ruby ${{ matrix.ruby }}"
@@ -54,6 +56,6 @@ jobs:
5456
uses: ruby/setup-ruby@v1
5557
with:
5658
bundler-cache: true
57-
ruby-version: '3.3'
59+
ruby-version: '4.0'
5860
- name: Run static type checks
5961
run: bundle exec srb tc

0 commit comments

Comments
 (0)