Skip to content

Commit

Permalink
Add Gemfiles for CI testing with Propshaft
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Jul 8, 2024
1 parent 1b34375 commit 5b4a746
Showing 3 changed files with 39 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -16,8 +16,12 @@ jobs:
ruby: '2.7'
- gemfile: rails-7.0
ruby: '3.0'
- gemfile: rails-7.0-propshaft
ruby: '3.0'
- gemfile: rails-7.1
ruby: '3.2'
ruby: '3.3'
- gemfile: rails-7.1-propshaft
ruby: '3.3'
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
17 changes: 17 additions & 0 deletions gemfiles/rails-7.0-propshaft.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
source 'https://rubygems.org'

group :test do
gem "rspec-rails"

gem "coveralls_reborn", require: false
gem "capybara"
end

gem "rails", "~> 7.0.0"
gem "propshaft"
gem "sqlite3", "~> 1.4"
gem "devise"

gem "trestle", github: "TrestleAdmin/trestle"

gemspec path: "../"
17 changes: 17 additions & 0 deletions gemfiles/rails-7.1-propshaft.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
source 'https://rubygems.org'

group :test do
gem "rspec-rails"

gem "coveralls_reborn", require: false
gem "capybara"
end

gem "rails", "~> 7.1.0"
gem "propshaft"
gem "sqlite3", "~> 1.4"
gem "devise"

gem "trestle", github: "TrestleAdmin/trestle"

gemspec path: "../"

0 comments on commit 5b4a746

Please sign in to comment.