Skip to content

Commit

Permalink
Add Rails 8 support and GH Action test
Browse files Browse the repository at this point in the history
  • Loading branch information
bvalentino committed Nov 8, 2024
1 parent 5d3d410 commit eb5ade9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
strategy:
matrix:
ruby: ["3.2", "3.3"]
activemodel: ["7.1"]
activemodel: ["7.1", "8.0"]
include:
- activemodel: "8.0"
ruby: "3.3"
- activemodel: "7.0"
ruby: "3.2"
- activemodel: "6.1"
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/rails-8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source 'https://rubygems.org'

gemspec path: '..'

gem 'activemodel', '~> 8.0.0'
gem 'activerecord', '~> 8.0.0'
gem 'sqlite3', '>= 2.1'

0 comments on commit eb5ade9

Please sign in to comment.