Skip to content

Commit

Permalink
Changed way gems are installed in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
LocoDelAssembly committed Mar 20, 2024
1 parent 2bf5587 commit 34c8235
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Install Ruby gems
run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Show environment
run: gem environment
- name: Run tests
Expand Down

0 comments on commit 34c8235

Please sign in to comment.