fix Run static analysis job #7
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: | |
| branches: | |
| - main | |
| jobs: | |
| cakephp-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: [8.4] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, intl, pdo_sqlite, xml | |
| coverage: none | |
| tools: composer | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: app/vendor | |
| key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('app/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php-${{ matrix.php }}- | |
| - name: Install Composer dependencies | |
| working-directory: app | |
| run: composer install --prefer-dist --no-progress --no-interaction | |
| - name: Run static analysis | |
| working-directory: app | |
| run: composer cs-check | |
| - name: Run migrations | |
| working-directory: app | |
| run: bin/cake migrations migrate -c test | |
| - name: Run unit tests | |
| working-directory: app | |
| run: composer unit-tests | |
| env: | |
| DATABASE_URL: "sqlite:///:memory:" |