Skip to content

[ignore for now][hotfix] - Skip search when no search query #23

[ignore for now][hotfix] - Skip search when no search query

[ignore for now][hotfix] - Skip search when no search query #23

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
rspec:
strategy:
fail-fast: false
matrix:
include:
- { ruby: '2.7', rails: '6.0' }
- { ruby: '2.7', rails: '6.1' }
- { ruby: '2.7', rails: '7.0' }
- { ruby: '3.0', rails: '6.0' }
- { ruby: '3.0', rails: '6.1' }
- { ruby: '3.0', rails: '7.0' }
- { ruby: '3.1', rails: '6.1' }
- { ruby: '3.1', rails: '7.0' }
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails }}.gemfile
REDIS_URL: redis://localhost:6379/1
services:
redis:
image: redis
options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec