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

Add tests with Ruby 3.4 #50

Merged
merged 1 commit into from
Jan 20, 2025
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
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@ jobs:
strategy:
matrix:
ruby-version:
- '3.1'
- '3.2'
- '3.3'
- '3.4'
gemfile:
- rails6.1
- rails7.0
- rails7.1
- rails_main
include:
- {ruby-version: '3.1', gemfile: 'rails6.1'}
- {ruby-version: '3.1', gemfile: 'rails7.0'}
- {ruby-version: '3.1', gemfile: 'rails7.1'}
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rails_main_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
ruby-version:
- '3.3'
- '3.4'
gemfile:
- rails_main
env:
Expand Down
4 changes: 4 additions & 0 deletions gemfiles/rails6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ gemspec path: "../"

gem "activerecord", "~> 6.1.0"
gem "sqlite3", "~> 1.4"
gem "base64"
gem "bigdecimal"
gem "drb"
gem "mutex_m"
12 changes: 10 additions & 2 deletions gemfiles/rails6.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,18 @@ GEM
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
base64 (0.2.0)
bigdecimal (3.1.9)
bump (0.10.0)
byebug (11.1.3)
concurrent-ruby (1.2.2)
diff-lcs (1.5.0)
drb (2.2.1)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
mini_portile2 (2.8.4)
minitest (5.20.0)
minitest (5.25.4)
mutex_m (0.3.0)
rake (13.0.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
Expand All @@ -52,14 +56,18 @@ PLATFORMS

DEPENDENCIES
activerecord (~> 6.1.0)
base64
bigdecimal
bump
bundler
byebug
drb
mutex_m
rake
rspec (~> 3.5)
sqlite3 (~> 1.4)
timecop
zombie_record!

BUNDLED WITH
2.4.20
2.6.2
4 changes: 4 additions & 0 deletions gemfiles/rails7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ gemspec path: "../"

gem "activerecord", "~> 7.0.0"
gem "sqlite3", "~> 1.4"
gem "base64"
gem "bigdecimal"
gem "drb"
gem "mutex_m"
12 changes: 10 additions & 2 deletions gemfiles/rails7.0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@ GEM
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
base64 (0.2.0)
bigdecimal (3.1.9)
bump (0.10.0)
byebug (11.1.3)
concurrent-ruby (1.2.2)
diff-lcs (1.5.0)
drb (2.2.1)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
mini_portile2 (2.8.4)
minitest (5.20.0)
minitest (5.25.4)
mutex_m (0.3.0)
rake (13.0.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
Expand All @@ -50,14 +54,18 @@ PLATFORMS

DEPENDENCIES
activerecord (~> 7.0.0)
base64
bigdecimal
bump
bundler
byebug
drb
mutex_m
rake
rspec (~> 3.5)
sqlite3 (~> 1.4)
timecop
zombie_record!

BUNDLED WITH
2.4.20
2.6.2
4 changes: 2 additions & 2 deletions gemfiles/rails7.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ GEM
i18n (1.14.1)
concurrent-ruby (~> 1.0)
mini_portile2 (2.8.4)
minitest (5.20.0)
minitest (5.25.4)
mutex_m (0.1.2)
rake (13.0.6)
rspec (3.12.0)
Expand Down Expand Up @@ -72,4 +72,4 @@ DEPENDENCIES
zombie_record!

BUNDLED WITH
2.4.20
2.6.2
Loading