Skip to content
Draft
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
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
matrix:
# Rails 8.0 depends on Ruby >= 3.2
ruby-version: ['3.1', '3.2', '3.3']
gemfile: [ rails_6.1, rails_7.0, rails_7.1, rails_7.2 ]
gemfile: [ rails_6.1, rails_7.0, rails_7.1, rails_7.2, rails_8.0 ]
exclude:
- ruby-version: '3.1'
gemfile: 'rails_8.0'
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down
12 changes: 12 additions & 0 deletions gemfiles/rails_8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 8.0.0'

# Specify your gem's dependencies in rpi_auth.gemspec.
if File.dirname(__FILE__).end_with?('gemfiles')
gemspec path: '../'
else
gemspec
end
Loading
Loading