Skip to content

Commit 3d52ea3

Browse files
committed
Add GitHub action workflow for Rails 7.1
1 parent 2ba937b commit 3d52ea3

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.github/workflows/rspec.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
ruby: '2.7'
1515
- gemfile: rails-7.0
1616
ruby: '3.2'
17+
- gemfile: rails-7.1
18+
ruby: '3.2'
1719
runs-on: ubuntu-latest
1820
env:
1921
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source 'https://rubygems.org'
22

3-
gem 'rails', '~> 7.0.0'
3+
gem 'rails', '~> 7.1.0'
4+
#gem 'rails', '~> 7.0.0'
45
#gem 'rails', '~> 6.1.0'
56
#gem 'rails', '~> 6.0.0'
67
#gem 'rails', '~> 5.2.2'
@@ -10,7 +11,7 @@ gem 'rails', '~> 7.0.0'
1011
gem 'sprockets-rails'
1112
gem 'turbolinks'
1213
gem 'uglifier'
13-
gem 'puma', '~> 5.2'
14+
gem 'puma'
1415

1516
group :test do
1617
gem "test-unit", "~> 3.0"

gemfiles/rails-7.1.gemfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '~> 7.1.0'
4+
gem 'sprockets-rails'
5+
gem 'turbolinks'
6+
7+
group :test do
8+
gem "test-unit", "~> 3.0"
9+
gem "rspec-rails", "~> 6.0.1"
10+
gem "capybara", "~> 2.4.4"
11+
end
12+
13+
gemspec :path => "../"

0 commit comments

Comments
 (0)