CI: Rename dependabot.yml to not be a "workflow" #257
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: ["2.7", "3.0", "3.1", "3.2", "jruby-9.4"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true # 'bundle install' and cache | |
- run: gem update --system | |
if: "${{ matrix.ruby == '3.2' || matrix.ruby == 'jruby-9.4' }}" | |
- 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 |