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

Added Rails 8.0 to the test matrix #337

Merged
merged 13 commits into from
Feb 8, 2025
Merged
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ jobs:
fail-fast: false
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
gemfile: ['rails_6.0','rails_6.1','rails_7.0', 'rails_7.1']
gemfile: ['rails_6.0','rails_6.1','rails_7.0', 'rails_7.1', 'rails_8.0']
exclude:
- ruby-version: '3.0'
gemfile: 'rails_8.0'
- ruby-version: '3.1'
gemfile: 'rails_8.0'
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
Expand Down
1 change: 1 addition & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ rails_versions = %w(
6.1
7.0
7.1
8.0
)

rails_versions.each do |version|
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/rails_8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 8.0.0"
gem "rails-controller-testing"

gemspec path: "../"
Loading