Skip to content

Commit

Permalink
Don't bundler cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Apr 7, 2024
1 parent d550872 commit cb0b751
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', 'jruby']
ruby-version: ['2.7', '3.0', '3.1', '3.2', 'jruby']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}

Expand All @@ -24,7 +24,9 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
bundler-cache: false
- name: Run tests
run: bundle exec rake
run: |
gem install bundler
bundle exec rake

0 comments on commit cb0b751

Please sign in to comment.