Skip to content

Commit

Permalink
Remove redundant bundler installation from GitHub Actions workflow
Browse files Browse the repository at this point in the history
Before:
- name: Install dependencies
  run: gem install bundler rake

After:
- name: Install dependencies
  run: gem install rake
  • Loading branch information
ddukbg authored Oct 23, 2024
1 parent 57ba441 commit 0a56712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
env:
CI: true
run: |
gem install bundler rake
gem install rake
bundle install --jobs 4 --retry 3
bundle exec rake test

0 comments on commit 0a56712

Please sign in to comment.