Update chobble-forms and en14960 gems; fix EN14960 wall height bug; symbolize keys in form configs and locales; standardize locale formatting; refactor session management and improve form validation #31
Workflow file for this run
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: | |
| 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@v5 | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-environment | |
| - name: Prepare database | |
| env: | |
| RAILS_ENV: test | |
| run: | | |
| bundle exec rails db:migrate | |
| bundle exec rails parallel:prepare | |
| - name: Run tests | |
| env: | |
| RAILS_ENV: test | |
| run: bundle exec parallel_rspec spec/${{ matrix.test-suite }} | |