Init chat code import #71
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: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3' | |
| extensions: pdo, json, mbstring | |
| - name: Install dependencies | |
| run: composer install --no-interaction --prefer-dist | |
| - name: Lint | |
| run: find src app bootstrap public routes -name '*.php' -print0 | xargs -0 -n 1 php -l | |
| - name: PHPUnit | |
| run: composer test |