From 4c8dc87dceb02b8e0f2115c64b6c965b310b51bd Mon Sep 17 00:00:00 2001 From: Eric Mueller Date: Sun, 19 Nov 2023 22:26:17 -0500 Subject: [PATCH] Stop managing the caching directly --- .bundle/config | 2 ++ .github/workflows/rspec.yml | 12 +----------- 2 files changed, 3 insertions(+), 11 deletions(-) create mode 100644 .bundle/config diff --git a/.bundle/config b/.bundle/config new file mode 100644 index 0000000..e5eb0a7 --- /dev/null +++ b/.bundle/config @@ -0,0 +1,2 @@ +--- +BUNDLE_WITHOUT: "typing" diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index d9b97eb..6792907 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -19,17 +19,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - - - name: Cache gems - uses: actions/cache@v3 - with: - path: vendor/bundle - key: ${{ runner.os }}-rspec-${{ matrix.ruby-version }}-${{ hashFiles('Gemfile.lock') }} - restore-keys: - ${{ runner.os }}-rspec-${{ matrix.ruby-version }}- - - - name: Install gems - run: bundle install --jobs 4 --retry 3 + bundler-cache: true - name: Run RSpec run: bundle exec rspec