Skip to content

Commit

Permalink
Merge pull request #171 from integrallis/enhance-build-matrix
Browse files Browse the repository at this point in the history
Enhance build matrix including ruby 3.4 and rails 8
  • Loading branch information
rmm5t authored Jan 6, 2025
2 parents ee045c7 + 1f66b21 commit 6d56bcf
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
ruby: ["3.2", "3.3", "3.4"]
bundler: [default]
gemfile:
- rails6.0
- rails6.1
- rails7.0
- rails7.1
- rails7.2
- rails8.0
- stripe5
- stripe6
- stripe7
Expand All @@ -34,6 +32,9 @@ jobs:
- { ruby: "2.6", gemfile: "rails5.2", bundler: "default" }
- { ruby: "2.6", gemfile: "rails6.0", bundler: "default" }
- { ruby: "2.6", gemfile: "rails6.1", bundler: "default" }
- { ruby: "2.7", gemfile: "rails7.0", bundler: "default" }
- { ruby: "3.0", gemfile: "rails7.1", bundler: "default" }
- { ruby: "3.1", gemfile: "rails7.2", bundler: "default" }
- { ruby: "2.5", gemfile: "stripe3", bundler: "default" }
- { ruby: "2.6", gemfile: "stripe3", bundler: "default" }
- { ruby: "2.7", gemfile: "stripe3", bundler: "default" }
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ appraise "rails7.2" do
gem "rails", "~> 7.2.0"
end

appraise "rails8.0" do
gem "rails", "~> 8.0.0"
end

appraise "stripe3" do
gem "stripe", "~> 3.0"
end
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/rails8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 8.0.0"

gemspec path: "../"

0 comments on commit 6d56bcf

Please sign in to comment.