Skip to content

Update dependency phpunit/phpunit to v10.5.41 #371

Update dependency phpunit/phpunit to v10.5.41

Update dependency phpunit/phpunit to v10.5.41 #371

Workflow file for this run

name: Laravel
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
laravel-tests:
runs-on: ubuntu-latest
steps:
- uses: shivammathur/setup-php@88841d1465a6792bd2428eb9e67f05bfbb15c304
with:
php-version: '8.2'
- uses: actions/checkout@v4
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.dist', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Style Check
run: ./vendor/bin/pint --test
- name: Execute tests
run: ./vendor/bin/phpunit