Skip to content
Open
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
12 changes: 8 additions & 4 deletions .github/workflows/ruby-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.2", "3.3"]
ruby: ["3.2", "3.3", "3.4"]
gemfile:
- Gemfile
- gemfiles/7_1.gemfile
- gemfiles/7_0.gemfile
- gemfiles/7_1.gemfile
- gemfiles/7_2.gemfile
- gemfiles/8_0.gemfile
exclude:
- ruby-version: '3.4'
gemfile: 'gemfiles/7_0.gemfile'

steps:
- uses: actions/[email protected]

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: vendor/bundle
key: >
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ task :rubocop do
--display-style-guide
--display-cop-names
--extra-details
--auto-correct
--autocorrect
]
end
end
Expand Down
6 changes: 6 additions & 0 deletions gemfiles/7_2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# frozen_string_literal: true

source "https://rubygems.org"
gemspec path: ".."

gem "rails", "~> 7.2.0"
6 changes: 6 additions & 0 deletions gemfiles/8_0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# frozen_string_literal: true

source "https://rubygems.org"
gemspec path: ".."

gem "rails", "~> 8.0.0"
Loading