Skip to content

Commit

Permalink
Update build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
rmm5t committed Nov 10, 2024
1 parent 360d931 commit 4f71148
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["2.7", "3.0"]
ruby: ["3.1", "3.2", "3.3"]
bundler: [default]
gemfile:
- rails-6.0
- rails-6.1
- rails-7.0
- rails-7.1
- rails-7.2
include:
- { ruby: "2.5", gemfile: "rails-5.2", bundler: "default" }
- { ruby: "2.6", gemfile: "rails-5.2", bundler: "default" }
- { ruby: "2.7", gemfile: "rails-6.0", bundler: "default" }
- { ruby: "3.0", gemfile: "rails-6.1", bundler: "default" }
- { ruby: "3.1", gemfile: "rails-7.0", bundler: "default" }

env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'
gemspec

group :development do
gem "guard", ">= 2.9"
gem "guard", "~> 2.9"
gem "guard-minitest"
end
4 changes: 4 additions & 0 deletions gemfiles/rails-7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

gemspec path: "../"
gem "railties", "~> 7.1.0"
4 changes: 4 additions & 0 deletions gemfiles/rails-7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

gemspec path: "../"
gem "railties", "~> 7.2.0"

0 comments on commit 4f71148

Please sign in to comment.