Bump bootsnap from 1.24.5 to 1.24.6 in the production-dependencies group #1856
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Rails tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Start MySQL server | |
| run: sudo systemctl start mysql.service | |
| - name: Run CI | |
| run: bin/ci | |
| env: | |
| DATABASE_URL: mysql2://root:root@localhost/mailadmin_test | |
| RAILS_ENV: test |