Bump laravel/pint from 1.26.0 to 1.27.0 #286
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: Pest tests | |
| on: [push, pull_request] | |
| jobs: | |
| pest_phpstand: | |
| name: Pest tests (PHP ${{ matrix.php-versions }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-versions: ['8.3'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| extensions: mbstring, dom, fileinfo, mysql | |
| coverage: xdebug | |
| - name: Composer install | |
| uses: 'ramsey/composer-install@v3' | |
| - name: Prepare the application | |
| run: | | |
| php -r "file_exists('.env') || copy('.env.example', '.env');" | |
| php artisan key:generate | |
| php artisan config:clear | |
| php artisan migrate -v | |
| - name: Run Pest Tests | |
| run: php -d memory_limit=-1 vendor/bin/pest |