Connection Pool for Redis (#448) #304
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04, macos-latest] | |
| ruby: [ 3.3, truffleruby ] | |
| exclude: | |
| - os: ubuntu-22.04 | |
| ruby: truffleruby | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.os }} - ${{ matrix.ruby }} | |
| env: | |
| BUNDLE_GEMFILE: Gemfile | |
| STEALTH_ENV: test | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Run specs | |
| if: startsWith(matrix.os, 'macos') || startsWith(matrix.os, 'ubuntu') | |
| timeout-minutes: 10 | |
| run: bundle exec rspec | |
| continue-on-error: ${{ startsWith(matrix.ruby, 'truffleruby') }} | |
| check_status: | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| name: CI Status (matrix) | |
| needs: tests | |
| steps: | |
| - name: Check continue-on-error matrix status | |
| if: ${{ needs.tests.result != 'success' }} | |
| run: exit 1 |