Skip to content

Commit 694ebf6

Browse files
authored
Merge pull request #707 from willnet/add-rails81-to-ci-matrix
Add Rails8.1 to the CI matrix
2 parents 5aa14d1 + fdfb83c commit 694ebf6

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/run_test_suite.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
# - https://www.ruby-lang.org/en/downloads/branches/
4343
# - https://guides.rubyonrails.org/maintenance_policy.html
4444
format: [materialized_path, materialized_path2]
45-
activerecord: [71, 72, 80]
46-
ruby: [3.2, 3.3]
45+
activerecord: [71, 72, 80, 81]
46+
ruby: ["3.2", "3.3", "3.4"]
4747
# additional tests
4848
include:
4949
# EOL 2023
@@ -60,10 +60,7 @@ jobs:
6060
- format: materialized_path2
6161
activerecord: 70
6262
ruby: "3.0"
63-
# active record 7.0 and 3.4 was failing
64-
- format: materialized_path2
65-
activerecord: 80
66-
ruby: "3.4"
63+
6764
env:
6865
# for the pg cli (psql, pg_isready) and possibly rails
6966
PGHOST: 127.0.0.1 # container is mapping it locally

gemfiles/gemfile_81.gemfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file was generated by Appraisal
2+
# frozen_string_literal: true
3+
4+
source "https://rubygems.org"
5+
6+
gem "activerecord", "~> 8.1.0"
7+
gem "mysql2"
8+
gem "pg"
9+
gem "sqlite3", ">= 2.1"
10+
11+
gemspec path: "../"

0 commit comments

Comments
 (0)