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

Update CI Versions #434

Merged
merged 1 commit into from
Dec 29, 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
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,11 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.2", "3.3"]
rails: ["7.1", "7.2"]
ruby: ["3.4", "3.3"]
rails: ["8.0", "7.2"]
continue-on-error: [false]
include:
- ruby: "head"
rails: "7.2"
continue-on-error: true
- ruby: "3.3"
- ruby: "3.4"
rails: "main"
continue-on-error: true
- ruby: "head"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ tmp
gemfiles/*.lock
.DS_Store
.ruby-version
.vscode/
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source "https://rubygems.org"
# Specify your gem's dependencies in scenic.gemspec
gemspec

rails_version = ENV.fetch("RAILS_VERSION", "7.0")
rails_version = ENV.fetch("RAILS_VERSION", "8.0")

rails_constraint = if rails_version == "main"
{github: "rails/rails"}
Expand Down
4 changes: 4 additions & 0 deletions spec/dummy/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,9 @@ class Application < Rails::Application
config.cache_classes = true
config.eager_load = false
config.active_support.deprecation = :stderr

if config.active_support.respond_to?(:to_time_preserves_timezone)
config.active_support.to_time_preserves_timezone = :zone
end
end
end
Loading