Skip to content

Commit

Permalink
Merge pull request #671 from splitrb/add-newer-rails-and-ruby-to-ci
Browse files Browse the repository at this point in the history
Add newer versions of Rails and Ruby to be tested on CI
  • Loading branch information
andrehjr authored Dec 26, 2021
2 parents f88bb07 + fbb9b73 commit d0c3340
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ jobs:
- gemfile: 6.0.gemfile
ruby: '3.0'

- gemfile: 6.1.gemfile
ruby: '3.0'

- gemfile: 7.0.gemfile
ruby: '3.0'

# - gemfile: 7.0.gemfile
# ruby: '3.1'


runs-on: ubuntu-latest

services:
Expand Down
9 changes: 9 additions & 0 deletions gemfiles/6.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal"
gem "codeclimate-test-reporter"
gem "rails", "~> 6.1"

gemspec path: "../"
9 changes: 9 additions & 0 deletions gemfiles/7.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal"
gem "codeclimate-test-reporter"
gem "rails", "~> 7.0"

gemspec path: "../"

0 comments on commit d0c3340

Please sign in to comment.