Skip to content

Commit

Permalink
Add Rails 7.2 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Jun 3, 2024
1 parent f21bec3 commit 64cc013
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
ruby: '3.2'
- gemfile: rails-7.1
ruby: '3.3'
- gemfile: rails-7.2
ruby: '3.2'
- gemfile: rails-7.2
ruby: '3.3'
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
Expand Down
27 changes: 27 additions & 0 deletions gemfiles/rails-7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
source 'https://rubygems.org'

group :development do
gem 'bcrypt'
gem 'faker'
end

group :test do
gem 'coveralls_reborn', require: false
gem 'simplecov', require: false

gem 'capybara'
gem 'capybara-selenium'
gem 'rexml'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'puma'

gem 'haml', '~> 6.0'
end

gem 'rails', '7.2.0.beta1'

gem 'sqlite3', '~> 1.4'
gem 'sassc-rails'

gemspec path: "../"

0 comments on commit 64cc013

Please sign in to comment.