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