Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove tests for EOL versions of Ruby and Rails #9

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 6 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,18 @@ 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"
rails: main

runs-on: 'ubuntu-latest'

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
4 changes: 2 additions & 2 deletions simple_state_machine.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "simple_state_machine/version"
$:.push File.expand_path("../lib", __FILE__)
require "simple_state_machine/version"

Gem::Specification.new do |s|
s.name = %q{simple_state_machine}
Expand Down
Loading