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
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,9 @@ jobs:
bundler-cache: true
- run: bundle exec rake spec
- run: bundle exec rubocop
# ruby-2.5.9 has issues running bundle install during specs.
# see errors here https://github.com/mgrunberg/cucumber-rails/runs/4824503004?check_suite_focus=true
# seems incompatibility with psych gem and rubygems version.
- run: gem update --system
if: matrix.ruby == '2.5'
- run: bundle exec rake cucumber
2 changes: 2 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ end

appraise 'rails_5_2' do
gem 'capybara', '< 3.33'
gem 'cucumber', '< 6'
gem 'railties', '~> 5.2.4'
gem 'activerecord'
gem 'sqlite3', '~> 1.3.13'
end

appraise 'rails_6_0' do
gem 'cucumber', '< 6'
gem 'railties', '~> 6.0.3'
gem 'activerecord'
gem 'sqlite3', '~> 1.4'
Expand Down