CI: remove an upgrade of RubyGems, which seemed to be about old needs #387
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
gemstash_tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["3.1", "3.2", "3.3", "jruby-9.4"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true # 'bundle install' and cache | |
- name: increase ulimit | |
run: ulimit -n 8192 | |
- name: Run Tests | |
run: bundle exec rspec --exclude-pattern "spec/integration_spec.rb" | |
- name: Run Integration Tests | |
run: bundle exec rspec ./spec/integration_spec.rb | |
timeout-minutes: 60 |