Skip to content

Merge pull request #162 from cedarcode/dependabot/bundler/rubocop-rai… #100

Merge pull request #162 from cedarcode/dependabot/bundler/rubocop-rai…

Merge pull request #162 from cedarcode/dependabot/bundler/rubocop-rai… #100

Workflow file for this run

name: Ruby
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run tests
env:
RAILS_ENV: test
DB_USER: postgres
DB_PASSWORD: postgres
PGHOST: localhost
PGPORT: 5432
run: |
bundle exec rake db:create db:schema:load
bundle exec rake
TEST_BROWSER=headless_chrome bundle exec rake test:system