diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 941c99d..e90570e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,6 +38,7 @@ jobs: gemfile: active_support_71 env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile + BUNDLE_PATH: "vendor/bundle" steps: - uses: actions/checkout@v4 @@ -46,12 +47,9 @@ jobs: with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - - name: Configure bundler - run: | - bundle config path vendor/bundle - - name: Create bundler lockfile - run: | - bundle lock + # - name: Create bundler lockfile + # run: | + # bundle lock - uses: actions/cache@v3 with: # NOTE: Bundler expands the path relative to the gemfile, not the @@ -61,9 +59,9 @@ jobs: restore-keys: | bundled-gems-${{ runner.os }}-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}- bundled-gems-${{ runner.os }}-ruby-${{ matrix.ruby }}- - - name: Install gems - run: | - bundle install --jobs 4 + # - name: Install gems + # run: | + # bundle install --jobs 4 - name: Run tests run: bundle exec rspec