Skip to content

Commit

Permalink
Add Rails 7.1 to CI Matrix and drop support for Ruby 2.6 (#1022)
Browse files Browse the repository at this point in the history
This does three things:

Add Rails 7.1 to the matrix
Drops support for Ruby 2.6 (almost 2 years EOL)
Removes Gemfile for Rails 5.2
  • Loading branch information
alejandroperea committed Dec 9, 2023
1 parent 6de0269 commit 0500b48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ jobs:
strategy:
matrix:
database: [ mysql, postgresql ]
gemfile: [ '7.0', '6.1', '6.0' ]
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ]
gemfile: [ '7.1', '7.0', '6.1', '6.0' ]
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
exclude:
- ruby: '2.6'
gemfile: '7.0'
- ruby: '3.2'
gemfile: '6.0'
- ruby: '3.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

gemspec path: "../"

gem "activerecord", "~> 5.2.0"
gem "railties", "~> 5.2.0"
gem "activerecord", "~> 7.1.0"
gem "railties", "~> 7.1.0"

# Database Configuration
group :development, :test do
platforms :jruby do
gem "activerecord-jdbcmysql-adapter", "~> 51.1"
gem "activerecord-jdbcpostgresql-adapter", "~> 51.1"
gem "activerecord-jdbcmysql-adapter", "~> 61.0"
gem "activerecord-jdbcpostgresql-adapter", "~> 61.0"
gem "kramdown"
end

Expand Down

0 comments on commit 0500b48

Please sign in to comment.