Skip to content

Commit

Permalink
Add GitHub action workflow for Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Oct 19, 2023
1 parent 2ba937b commit 3d52ea3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
ruby: '2.7'
- gemfile: rails-7.0
ruby: '3.2'
- gemfile: rails-7.1
ruby: '3.2'
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
Expand Down
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
source 'https://rubygems.org'

gem 'rails', '~> 7.0.0'
gem 'rails', '~> 7.1.0'
#gem 'rails', '~> 7.0.0'
#gem 'rails', '~> 6.1.0'
#gem 'rails', '~> 6.0.0'
#gem 'rails', '~> 5.2.2'
Expand All @@ -10,7 +11,7 @@ gem 'rails', '~> 7.0.0'
gem 'sprockets-rails'
gem 'turbolinks'
gem 'uglifier'
gem 'puma', '~> 5.2'
gem 'puma'

group :test do
gem "test-unit", "~> 3.0"
Expand Down
13 changes: 13 additions & 0 deletions gemfiles/rails-7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
source 'https://rubygems.org'

gem 'rails', '~> 7.1.0'
gem 'sprockets-rails'
gem 'turbolinks'

group :test do
gem "test-unit", "~> 3.0"
gem "rspec-rails", "~> 6.0.1"
gem "capybara", "~> 2.4.4"
end

gemspec :path => "../"

0 comments on commit 3d52ea3

Please sign in to comment.