Skip to content

Commit

Permalink
Remove tests for EOL versions of Ruby and Rails
Browse files Browse the repository at this point in the history
  • Loading branch information
p8 committed Mar 13, 2024
1 parent 1715df9 commit f3ec929
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 20 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/build.yml
Expand Up @@ -11,24 +11,15 @@ jobs:
fail-fast: false
matrix:
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
- "2.7"
- "2.6"
- "2.5"
rails:
- "5.2"
- "6.0"
- "6.1"
- "7.0"
- "7.1"
- main
exclude:
- ruby: 2.5
rails: main
- ruby: 2.6
rails: main
- ruby: 3.0
rails: "5.1"
- ruby: 3.0
rails: "5.2"

runs-on: 'ubuntu-latest'

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,11 +1,11 @@
# A sample Gemfile
source "http://rubygems.org"
source "https://rubygems.org"

gemspec

group :test do
gem "rspec", "~> 3.0"
gem "activerecord", ">= 5.2.0"
gem "activerecord", ">= 5.2.8.1"
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
end
Expand Up @@ -3,7 +3,6 @@ source "http://rubygems.org"

group :test do
gem "rspec"
gem "activerecord", "~>5.2.0"
gem "activerecord", "~>7.0.0"
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
end
Expand Up @@ -3,7 +3,6 @@ source "http://rubygems.org"

group :test do
gem "rspec"
gem "activerecord", "~>6.0.0"
gem "activerecord", "~>7.1.0"
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
end

0 comments on commit f3ec929

Please sign in to comment.