Skip to content

Commit

Permalink
Add CI for Rails 7.2
Browse files Browse the repository at this point in the history
Additionally, add an exclude for main since it bumped the ruby version
  • Loading branch information
Earlopain committed Nov 1, 2024
1 parent e9548a3 commit d57a8e4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@ jobs:
fail-fast: false
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2', '3.3', 'head', 'truffleruby' ]
rails: [ '6.1', '7.0', '7.1', 'main' ]
rails: [ '6.1', '7.0', '7.1', '7.2', 'main' ]
exclude:
- ruby: '2.7'
rails: '7.2'
- ruby: '3.0'
rails: '7.2'
- ruby: '2.7'
rails: 'main'
- ruby: '3.0'
rails: 'main'
- ruby: '3.1'
rails: 'main'

env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails }}.gemfile
Expand Down
6 changes: 6 additions & 0 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source "https://rubygems.org"

gem "activemodel", "~> 7.2.0"
gem "railties", "~> 7.2.0"

gemspec path: "../"

0 comments on commit d57a8e4

Please sign in to comment.