Skip to content

Commit 5cd7d9c

Browse files
committed
feat: update supported ruby versions
Drops support for Ruby 3.1 since it is EOL. Tests only first and last versions of 3.2.* Tests all current versions of Ruby 3.3.* and 3.4.*
1 parent 0ee21e4 commit 5cd7d9c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,21 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
ruby-version:
27-
- 3.1.6
2827
- 3.2.0
29-
- 3.2.4
28+
- 3.2.8
3029
- 3.3.0
3130
- 3.3.1
3231
- 3.3.2
3332
- 3.3.4
3433
- 3.3.5
3534
- 3.3.6
35+
- 3.3.7
36+
- 3.3.8
3637
- 3.4.0
3738
- 3.4.1
39+
- 3.4.2
40+
- 3.4.3
41+
- 3.4.4
3842
database: [ mysql, postgres, sqlite ]
3943
services:
4044
mysql:

solid_queue.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md", "UPGRADING.md"]
2323
end
2424

25-
spec.required_ruby_version = '>= 3.1'
25+
spec.required_ruby_version = '>= 3.2'
2626

2727
rails_version = ">= 7.1"
2828
spec.add_dependency "activerecord", rails_version

0 commit comments

Comments
 (0)