Skip to content

Commit

Permalink
bugfix: CI GHA (#212)
Browse files Browse the repository at this point in the history
* Add in ci fix

* test using latest on 2.7
  • Loading branch information
luke-hill authored Jun 19, 2024
1 parent 969b7ed commit cab69c6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
browser: ['chrome', 'firefox']
gemfile: ['Gemfile', 'gemfiles/low_spec.gemfile']
include:
- os: ubuntu-latest
ruby: '2.7'
rubygems: '3.2.3'
rubygems: ['latest']
# include:
# - os: ubuntu-latest
# ruby: '2.7'
# rubygems: '3.2.3'
exclude:
# Low spec gemfiles are having issues post Selenium Manager release on GHA
# Revisit these exclusions once low spec selenium is 4.10+ and chrome is v120+
Expand All @@ -35,6 +36,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: ${{ matrix.rubygems }}
bundler: '2.4.22'
bundler-cache: true
- run: bundle exec rspec
Expand Down

0 comments on commit cab69c6

Please sign in to comment.