Skip to content

Update chobble.com links to www.chobble.com #916

Update chobble.com links to www.chobble.com

Update chobble.com links to www.chobble.com #916

Workflow file for this run

name: "Test: Ruby"
on:
pull_request:
merge_group:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
test-suite:
- controllers
- features
- models
- requests
- services
- helpers
- lib
- seeds
- views
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Setup environment
uses: ./.github/actions/setup-environment
# No database prep: the test suite uses an in-memory SQLite database and
# loads db/schema.rb into it at boot (see spec/rails_helper.rb), so there
# is nothing to migrate or prepare on disk.
- name: Run tests
env:
RAILS_ENV: test
run: bundle exec parallel_rspec spec/${{ matrix.test-suite }}