Skip to content

Add rubocop and correct styles #254

Add rubocop and correct styles

Add rubocop and correct styles #254

Workflow file for this run

name: Build
on: [push]
jobs:
rubocop:
name: Rubocop
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Run Rubocop
run: bin/rubocop
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.2.2]
database: [sqlite, postgres, mysql]
services:
redis:
image: redis
ports:
- 6379:6379
postgres:
image: postgres:15.1
env:
POSTGRES_HOST_AUTH_METHOD: "trust"
ports:
- 55432:5432
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: |
sleep 2
bin/rails db:setup
- name: Run tests
run: bin/rails test
- name: Run tests (no connects-to)
run: NO_CONNECTS_TO=true bin/rails test