Skip to content

Commit 6e09178

Browse files
committed
Drop unsupported Ruby versions
1 parent b4c08b1 commit 6e09178

File tree

1 file changed

+8
-22
lines changed

1 file changed

+8
-22
lines changed

.github/workflows/ruby.yml

+8-22
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,11 @@ 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:
26+
- "3.0"
27+
- "3.1"
28+
- "3.2"
29+
- "3.3"
4630
steps:
4731
- uses: actions/checkout@v4
4832
- name: Set up Ruby
@@ -51,4 +35,6 @@ jobs:
5135
ruby-version: ${{ matrix.ruby }}
5236
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
5337
- name: Run tests
54-
run: bundle exec rake
38+
run: |
39+
bundle exec appraisal install
40+
bundle exec appraisal rake test

0 commit comments

Comments
 (0)