Skip to content
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
35 changes: 33 additions & 2 deletions .github/workflows/minitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rails-version: ['3.2', '4.0', '4.1', '4.2', '5.0', '5.1', '5.2', '6.0', '6.1', '7.0.1', '7.1', '7.2', '8.0']
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
rails-version: ['3.2', '4.0', '4.1', '4.2', '5.0', '5.1', '5.2', '6.0', '6.1', '7.0.1', '7.1', '7.2', '8.0', '8.1']
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
exclude:
- rails-version: '3.2'
ruby-version: '2.7'
Expand All @@ -25,6 +25,8 @@ jobs:
ruby-version: '3.2'
- rails-version: '3.2'
ruby-version: '3.3'
- rails-version: '3.2'
ruby-version: '3.4'

- rails-version: '4.0'
ruby-version: '2.7'
Expand All @@ -36,6 +38,8 @@ jobs:
ruby-version: '3.2'
- rails-version: '4.0'
ruby-version: '3.3'
- rails-version: '4.0'
ruby-version: '3.4'

- rails-version: '4.1'
ruby-version: '2.7'
Expand All @@ -47,6 +51,8 @@ jobs:
ruby-version: '3.2'
- rails-version: '4.1'
ruby-version: '3.3'
- rails-version: '4.1'
ruby-version: '3.4'

- rails-version: '4.2'
ruby-version: '2.4'
Expand All @@ -60,6 +66,8 @@ jobs:
ruby-version: '3.2'
- rails-version: '4.2'
ruby-version: '3.3'
- rails-version: '4.2'
ruby-version: '3.4'

- rails-version: '5.0'
ruby-version: '2.4'
Expand All @@ -71,6 +79,8 @@ jobs:
ruby-version: '3.2'
- rails-version: '5.0'
ruby-version: '3.3'
- rails-version: '5.0'
ruby-version: '3.4'

- rails-version: '5.1'
ruby-version: '2.4'
Expand All @@ -93,6 +103,8 @@ jobs:
ruby-version: '3.2'
- rails-version: '5.2'
ruby-version: '3.3'
- rails-version: '5.2'
ruby-version: '3.4'

- rails-version: '6.0'
ruby-version: '2.4'
Expand Down Expand Up @@ -137,6 +149,25 @@ jobs:
ruby-version: '3.0'
- rails-version: '8.0'
ruby-version: '3.1'

- rails-version: '8.1'
ruby-version: '2.4'
- rails-version: '8.1'
ruby-version: '2.5'
- rails-version: '8.1'
ruby-version: '2.6'
- rails-version: '8.1'
ruby-version: '2.7'
- rails-version: '8.1'
ruby-version: '3.0'
- rails-version: '8.1'
ruby-version: '3.1'
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't you add here

 - rails-version: '8.1'
            ruby-version: '3.2'
- rails-version: '8.1'
            ruby-version: '3.3'
- rails-version: '8.1'
            ruby-version: '3.4'

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added.

- rails-version: '8.1'
ruby-version: '3.2'
- rails-version: '8.1'
ruby-version: '3.3'
- rails-version: '8.1'
ruby-version: '3.4'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion auto-session-timeout.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_dependency "actionpack", [">= 3.2", "< 8.1"]
spec.add_dependency "actionpack", [">= 3.2", "< 9"]
spec.add_development_dependency "bundler", "~> 2"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", [">= 4.2", "< 6"]
Expand Down