Update chobble.com links to www.chobble.com #916
This file contains hidden or 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: "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 }} | |