Skip to content

Update shivammathur/setup-php digest to a99dd24 #418

Update shivammathur/setup-php digest to a99dd24

Update shivammathur/setup-php digest to a99dd24 #418

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@7e981401425d5b65f9cdbeda5ddaf499d2576147
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