Skip to content

Commit

Permalink
Use different bundler versions to fix 'did you mean' exception
Browse files Browse the repository at this point in the history
  • Loading branch information
makmic committed Jan 17, 2025
1 parent a64bf6f commit 39a128b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,37 @@ jobs:
include:
- ruby: 2.5.3
gemfile: Gemfile.cucumber-2.4
bundler: 1.17.3
- ruby: 2.5.3
gemfile: Gemfile.cucumber-3.0
bundler: 1.17.3
- ruby: 2.5.3
gemfile: Gemfile.cucumber-3.1
bundler: 1.17.3
- ruby: 2.6.6
gemfile: Gemfile.cucumber-4.1
bundler: 1.17.3
- ruby: 2.6.6
gemfile: Gemfile.cucumber-5.3
bundler: 1.17.3
- ruby: 2.7.2
gemfile: Gemfile.cucumber-4.1
bundler: 2.3.27
- ruby: 2.7.2
gemfile: Gemfile.cucumber-5.3
bundler: 2.3.27
- ruby: 3.2.0
gemfile: Gemfile.cucumber-4.1
bundler: 2.6.3
- ruby: 3.2.0
gemfile: Gemfile.cucumber-5.3
bundler: 2.6.3
- ruby: 3.3.6
gemfile: Gemfile.cucumber-5.3
bundler: 2.5.23
- ruby: 3.4.1
gemfile: Gemfile.cucumber-5.3
bundler: 2.6.3
env:
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
steps:
Expand All @@ -46,7 +57,7 @@ jobs:
ruby-version: "${{ matrix.ruby }}"
- name: Bundle
run: |
gem install bundler:1.17.3
gem install bundler:${{ matrix.bundler }}
bundle install --no-deployment
- name: Run tests
run: bundle exec rake current_rspec

0 comments on commit 39a128b

Please sign in to comment.