From 119877aa188e5ad3629428e91d456e088b44fd0a Mon Sep 17 00:00:00 2001 From: Jon Rowe Date: Fri, 31 Oct 2025 09:12:36 +0000 Subject: [PATCH] Add builds for Rails 8.1 --- .github/workflows/ci.yml | 11 +++++++++++ example_app_generator/run_specs.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32bb17b21d..006f56660a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,17 @@ jobs: env: RAILS_VERSION: 'main' + # Rails 8.1 builds >= 3.2 + - ruby: 3.4 + env: + RAILS_VERSION: '~> 8.1.0' + - ruby: 3.3 + env: + RAILS_VERSION: '~> 8.1.0' + - ruby: 3.2 + env: + RAILS_VERSION: '~> 8.1.0' + # Rails 8.0 builds >= 3.2 - ruby: 3.4 env: diff --git a/example_app_generator/run_specs.rb b/example_app_generator/run_specs.rb index 8df4862d90..e3102290aa 100644 --- a/example_app_generator/run_specs.rb +++ b/example_app_generator/run_specs.rb @@ -10,4 +10,4 @@ run('bin/rake --backtrace spec:controllers') || abort run('bin/rake --backtrace spec:helpers') || abort run('bin/rake --backtrace spec:mailers') || abort -run("bin/rake --backtrace stats") || abort +run("bin/rails stats") || abort