Skip to content

Commit

Permalink
test with ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bodrovis committed Dec 26, 2023
1 parent d7a2d3a commit 0203886
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- '3.0'
- 3.1
- 3.2
- '3.3.0-preview2'
- 3.3
runs-on: ${{ matrix.os }}
env:
LOKALISE_API_TOKEN: 123abc
Expand Down
6 changes: 5 additions & 1 deletion spec/dummy/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ class Application < Rails::Application
# Don't generate system test files.
config.generators.system_tests = nil

config.load_defaults 6.1
if Rails.version < Gem::Version.new('7.0')
config.load_defaults 6.1
else
config.load_defaults 7.0
end
end
end

0 comments on commit 0203886

Please sign in to comment.