diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32bb17b21..006f56660 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 8df4862d9..e3102290a 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