.github/workflows/ruby.yml in spidr-0.7.0 vs .github/workflows/ruby.yml in spidr-0.7.1

- old
+ new

@@ -7,20 +7,20 @@ runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - - 2.7 - '3.0' - '3.1' + - '3.2' + - '3.3' - jruby name: Ruby ${{ matrix.ruby }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - name: Install dependencies - run: bundle install --jobs 4 --retry 3 + bundler-cache: true - name: Run tests run: bundle exec rake test