Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true
- run: bundle exec rake rubocop
6 changes: 3 additions & 3 deletions .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]

jobs:
test-latest:
name: "Active Record 8.0 + Ruby 3.3"
name: "Active Record 8.0 + Ruby 3.4"
runs-on: ubuntu-latest
services:
mysql:
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true
- name: Prepare the database
run: |
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- 3306:3306
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
ruby: ["3.1", "3.2", "3.3", "3.4"]
active_record: ["7.0", "7.1", "7.2"]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-${{ matrix.active_record }}.x
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]

jobs:
test-latest:
name: "Active Record 8.0 + Ruby 3.3"
name: "Active Record 8.0 + Ruby 3.4"
runs-on: ubuntu-latest
services:
postgres:
Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true
- name: Prepare PostgreSQL
run: createdb active_record_doctor_secondary
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- 5432:5432
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
ruby: ["3.1", "3.2", "3.3", "3.4"]
active_record: ["7.0", "7.1", "7.2"]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-${{ matrix.active_record }}.x
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ on: [push, pull_request]

jobs:
test-latest:
name: "Active Record 8.0 + Ruby 3.3"
name: "Active Record 8.0 + Ruby 3.4"
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-8.0.x
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true
- name: Run the test suite against SQLite
run: bundle exec rake test:sqlite3
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
ruby: ["3.1", "3.2", "3.3", "3.4"]
active_record: ["7.0", "7.1", "7.2"]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-${{ matrix.active_record }}.x
Expand Down
2 changes: 2 additions & 0 deletions gemfiles/Gemfile.activerecord-7.0.x
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ gem "pg", "~> 1.5.9"
gem "mysql2", "~> 0.5.6"
gem "sqlite3", "~> 1.4"
gem "logger"
gem "mutex_m"
gem "bigdecimal"