Bump laravel/framework from 11.36.1 to 11.37.0 #220
Workflow file for this run
This file contains 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@v4 | |
- 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 |