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

Pr 387 #396

Closed
wants to merge 8 commits into from
Closed
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
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby_version: ['3.1', '3.0', '2.7']
rails_version: ['6.0.x', '6.1.x', '7.0.x', 'edge']
ruby_version:
- 2.7.6
- 3.0.4
- 3.1.2
rails_version:
- 6.0.x
- 6.1.x
- 7.0.x
name: Ruby ${{ matrix.ruby_version }} on Rails ${{ matrix.rails_version }}
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile-rails.${{ matrix.rails_version }}
Expand All @@ -28,5 +34,4 @@ jobs:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Run tests
run: |
bundle exec rake test
run: bundle exec rake test
56 changes: 0 additions & 56 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ end


group :development, :test do
gem 'minitest', '~> 5.14.0'
gem 'minitest'
end

group :development do
Expand All @@ -31,4 +31,4 @@ group :development do
gem "activerecord-jdbcsqlite3-adapter"
gem "jruby-openssl", :require => false # Silence openssl warnings.
end
end
end
22 changes: 0 additions & 22 deletions gemfiles/Gemfile-rails.4.2.x

This file was deleted.

22 changes: 0 additions & 22 deletions gemfiles/Gemfile-rails.5.0.x

This file was deleted.

21 changes: 0 additions & 21 deletions gemfiles/Gemfile-rails.5.1.x

This file was deleted.

21 changes: 0 additions & 21 deletions gemfiles/Gemfile-rails.5.2.x

This file was deleted.

2 changes: 1 addition & 1 deletion gemfiles/Gemfile-rails.6.0.x
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "http://rubygems.org"

gemspec :path => ".."

gem "activerecord", "~> 6.0.0rc1"
gem "activerecord", "~> 6.0.5"

group :development do
gem 'mocha'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile-rails.6.1.x
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "http://rubygems.org"

gemspec :path => ".."

gem "activerecord", "~> 6.1.1"
gem "activerecord", "~> 6.1.6"

group :development do
gem 'mocha'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile-rails.7.0.x
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "http://rubygems.org"

gemspec :path => ".."

gem "activerecord", "~> 7.0.0"
gem "activerecord", "~> 7.0.3"

group :development do
gem 'mocha'
Expand Down
21 changes: 0 additions & 21 deletions gemfiles/Gemfile-rails.edge

This file was deleted.