Skip to content

Commit

Permalink
Disable bundler cache (#3031)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoyne committed Jun 28, 2024
1 parent c63e354 commit 32bfa28
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,17 @@ jobs:
BOOTSTRAP_VERSION: ${{ matrix.bootstrap_version }}
ENGINE_CART_RAILS_OPTIONS: --skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
bundler: 'latest'
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: bundle exec rake
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: false
bundler: "latest"
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake

build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 32bfa28

Please sign in to comment.