Skip to content

Commit

Permalink
Fix concurrent ruby after install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Brown committed Jul 8, 2024
1 parent 053ea5d commit 382ed34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Fix concurrent ruby
if: matrix.rails-version == '4.2'
run: sudo gem install concurrent-ruby
- name: Install bundler 1.x.x
if: matrix.rails-version == '4.2'
run: gem uninstall -aIx bundler && gem install bundler -v 1.17.3
Expand All @@ -102,5 +99,8 @@ jobs:
env:
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
DEBUG: true
- name: Fix concurrent ruby
if: matrix.rails-version == '4.2'
run: sudo gem install concurrent-ruby
- name: Run tests
run: bundle exec rake

0 comments on commit 382ed34

Please sign in to comment.