Skip to content

Commit

Permalink
Update CI for new Rails versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jho406 committed Feb 20, 2025
1 parent 5b59361 commit 8f57853
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.3', '3.2', '3.1']
rails: ['7.0', '7.1']

ruby: ["3.3", "3.2", "3.1"]
rails: ["7.0", "7.1", "7.2", "8.0"]
exclude:
- ruby: 3.1
version: 8.0
runs-on: 'ubuntu-latest'
env:
ARUBA_TIMEOUT: 240
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/rails7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
source 'https://rubygems.org'

gemspec name: "humid", path: "../"

gem "rake"
gem "rspec"
gem "byebug"
gem 'rails', '~> 7.2.0'
8 changes: 8 additions & 0 deletions gemfiles/rails8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
source 'https://rubygems.org'

gemspec name: "humid", path: "../"

gem "rake"
gem "rspec"
gem "byebug"
gem 'rails', '~> 8.0.1'

0 comments on commit 8f57853

Please sign in to comment.