Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Workflows): exclude ruby 3.0 from workflows
Browse files Browse the repository at this point in the history
Vakmeth committed Jan 23, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 87c5389 commit 4f090d6
Showing 5 changed files with 5 additions and 13 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.0", "3.1", "3.2"]
ruby-version: ["3.1", "3.2"]
gemfile:
- Gemfile
- test/ci/rails70.gemfile
@@ -23,13 +23,6 @@ jobs:
# Exclude Ruby 3.0 since it isn't supported with rails 7.2
- ruby-version: "3.1"
gemfile: Gemfile
# Exclude Ruby 3.1 since it isn't supported with rails 7.0
# Exclude Ruby 3.1 since it isn't supported with rails 7.0
- ruby-version: "3.1"
gemfile: test/ci/rails70.gemfile
# Exclude Ruby 3.2 since it isn't supported with rails 7.0
- ruby-version: "3.2"
gemfile: test/ci/rails70.gemfile

env:
ROOT_BUNDLE_PATH: ${{ github.workspace }}/vendor/bundle
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ PATH
wagons (0.8.0)
bundler (>= 2.0)
concurrent-ruby (< 1.3.5)
rails (>= 7.0)
rails (>= 6.1)
seed-fu-ndo (>= 0.0.3)

GEM
2 changes: 1 addition & 1 deletion test/dummy/Gemfile
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ gem 'wagons', :path => File.expand_path(__FILE__).split("test#{File::SEPARATOR}d

group :development, :test do
gem 'net-smtp'
gem 'sqlite3', '<= 2.1', '>=1.4'
gem 'sqlite3', '~> 2.1'
end

group :test do
3 changes: 1 addition & 2 deletions test/dummy/db/schema.rb
Original file line number Diff line number Diff line change
@@ -10,12 +10,11 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2012_06_06_125104) do
ActiveRecord::Schema[8.0].define(version: 2012_06_06_125104) do
create_table "people", force: :cascade do |t|
t.string "name", limit: 255
t.date "birthday"
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
end

end
2 changes: 1 addition & 1 deletion wagons.gemspec
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|

s.add_dependency 'bundler', '>= 2.0'

s.add_dependency 'rails', '>= 7.0'
s.add_dependency 'rails', '>= 6.1'

s.add_dependency 'seed-fu-ndo', '>= 0.0.3'

0 comments on commit 4f090d6

Please sign in to comment.