Utilize workers while the queue is published #53
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: build | |
| on: | |
| push: | |
| branches: [$default-branch] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: "Redis ${{ matrix.redis-version }}, Ruby ${{ matrix.ruby-version }}, RSpec ${{ matrix.rspec-core-version }}" | |
| strategy: | |
| matrix: | |
| redis-version: [6] | |
| ruby-version: | |
| - 3.4 | |
| rspec-core-version: | |
| - 3.11.0 | |
| - 3.12.3 | |
| - 3.13.5 | |
| include: | |
| - redis-version: 7 | |
| ruby-version: '3.4' | |
| rspec-core-version: 3.13.5 | |
| - redis-version: 6 | |
| ruby-version: '3.5.0-preview1' | |
| rspec-core-version: 3.13.5 | |
| - redis-version: 6 | |
| ruby-version: '3.3' # Quoted in order to stringify to '3.0', not '3'. | |
| rspec-core-version: 3.13.5 | |
| services: | |
| redis: | |
| image: "redis:${{ matrix.redis-version }}" | |
| ports: | |
| - 6379:6379 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - uses: ruby/setup-ruby@44511735964dcb71245e7e55f72539531f7bc0eb # v1 | |
| env: | |
| RSPEC_CORE: ${{ matrix.rspec-core-version }} | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| bundler-cache: true | |
| - run: bundle exec rubocop | |
| - run: bundle exec rake |