Skip to content

Commit 1eb9bc9

Browse files
committed
Drop unsupported Ruby versions
1 parent 447c00d commit 1eb9bc9

File tree

1 file changed

+4
-22
lines changed

1 file changed

+4
-22
lines changed

.github/workflows/ruby.yml

+4-22
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
ruby: [2.3, 2.4, 2.5, 2.6, 2.7]
26-
rails: ["4.1", "4.2", "5.0", "5.2.3", "6.0"]
27-
exclude:
28-
- ruby: "2.4"
29-
rails: "4.1"
30-
- ruby: "2.4"
31-
rails: "4.2"
32-
- ruby: "2.4"
33-
rails: "6.0"
34-
- ruby: "2.5"
35-
rails: "4.1"
36-
- ruby: "2.5"
37-
rails: "4.2"
38-
- ruby: "2.6"
39-
rails: "4.1"
40-
- ruby: "2.6"
41-
rails: "4.2"
42-
- ruby: "2.7"
43-
rails: "4.1"
44-
- ruby: "2.7"
45-
rails: "4.2"
25+
ruby: [3.0, 3.1, 3.2, 3.3]
4626
steps:
4727
- uses: actions/checkout@v4
4828
- name: Set up Ruby
@@ -51,4 +31,6 @@ jobs:
5131
ruby-version: ${{ matrix.ruby }}
5232
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
5333
- name: Run tests
54-
run: bundle exec rake
34+
run: |
35+
bundle exec appraisal install
36+
bundle exec appraisal rake test

0 commit comments

Comments
 (0)