Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added CI tests for Rails 6.1 and 7.1. #39

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
ruby: ['2.7']
rails: ['5.2']
rails: ['5.2', '6.1', '7.1']
env:
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
steps:
Expand Down
10 changes: 10 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@ appraise 'rails-5.2' do
gem 'activesupport', '~> 5.2.0'
gem 'railties', '~> 5.2.0'
end

appraise 'rails-6.1' do
gem 'activesupport', '~> 6.1.0'
gem 'railties', '~> 6.1.0'
end

appraise 'rails-7.1' do
gem 'activesupport', '~> 7.1.0'
gem 'railties', '~> 7.1.0'
end
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### next

* TODO: Replace this bullet point with an actual description of a change.
* Added CI tests for Rails 6.1 and 7.1 (#39)

### 1.6.0

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

source "https://rubygems.org"

gem "appraisal", "~> 2.4"
gem "bundler", "~> 2.3"
gem "countless", "~> 1.1"
gem "factory_bot", "~> 6.2", "< 6.4.5"
gem "guard-rspec", "~> 4.7"
gem "railties", "~> 6.1.0"
gem "rake", "~> 13.0"
gem "redcarpet", "~> 3.5"
gem "rspec", "~> 3.12"
gem "rubocop", "~> 1.28"
gem "rubocop-rails", "~> 2.14"
gem "rubocop-rspec", "~> 2.10"
gem "simplecov", ">= 0.22"
gem "timecop", ">= 0.9.6"
gem "vcr", "~> 6.0"
gem "yard", ">= 0.9.28"
gem "yard-activesupport-concern", ">= 0.0.1"
gem "activesupport", "~> 6.1.0"

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

source "https://rubygems.org"

gem "appraisal", "~> 2.4"
gem "bundler", "~> 2.3"
gem "countless", "~> 1.1"
gem "factory_bot", "~> 6.2", "< 6.4.5"
gem "guard-rspec", "~> 4.7"
gem "railties", "~> 7.1.0"
gem "rake", "~> 13.0"
gem "redcarpet", "~> 3.5"
gem "rspec", "~> 3.12"
gem "rubocop", "~> 1.28"
gem "rubocop-rails", "~> 2.14"
gem "rubocop-rspec", "~> 2.10"
gem "simplecov", ">= 0.22"
gem "timecop", ">= 0.9.6"
gem "vcr", "~> 6.0"
gem "yard", ">= 0.9.28"
gem "yard-activesupport-concern", ">= 0.0.1"
gem "activesupport", "~> 7.1.0"

gemspec path: "../"
Loading