Make indexes on ready_executions to be covering indexes for the polli… #97
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: Build | |
on: [push, pull_request] | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: [3.2.2] | |
database: [mysql, sqlite] | |
services: | |
mysql: | |
image: mysql:8.0.31 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: "yes" | |
ports: | |
- 33060:3306 | |
options: --health-cmd "mysql -h localhost -e \"select now()\"" --health-interval 1s --health-timeout 5s --health-retries 30 | |
env: | |
TARGET_DB: ${{ matrix.database }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Setup test database | |
run: | | |
bin/rails db:setup | |
- name: Run tests | |
run: bin/rails test |