Skip to content

Commit

Permalink
Merge pull request #11 from site-prism/refactor/update_workflows
Browse files Browse the repository at this point in the history
Refactor/update workflows
  • Loading branch information
luke-hill committed Jul 5, 2022
2 parents 555ab33 + a736e21 commit 01b02b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.0']
gemfile: ['Gemfile', 'gemfiles/Gemfile.webdriver_alpha', 'gemfiles/Gemfile.webdriver_beta']
ruby: ['2.7', '3.0', '3.1']
gemfile: ['gemfiles/low_spec.gemfile', 'Gemfile']
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion automation_helpers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_development_dependency 'capybara', '~> 3.27'
spec.add_development_dependency 'cucumber', ['>= 5.0', '< 8']
spec.add_development_dependency 'cucumber', ['>= 5.0', '< 9']
spec.add_development_dependency 'faraday', '~> 1.0'
spec.add_development_dependency 'parallel_tests', '~> 3.7'
spec.add_development_dependency 'rspec', '~> 3.10'
Expand Down
7 changes: 0 additions & 7 deletions gemfiles/Gemfile.webdriver_alpha

This file was deleted.

2 changes: 2 additions & 0 deletions gemfiles/Gemfile.webdriver_beta → gemfiles/low_spec.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

source 'https://rubygems.org'

gem 'capybara', '< 3.30'
gem 'cucumber', '< 7'
gem 'selenium-webdriver', '4.0.0.beta4'

gemspec path: '..'

0 comments on commit 01b02b2

Please sign in to comment.