Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Laravel11

Laravel11 #39

Workflow file for this run

name: Larastan
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
laravel-tests:
runs-on: ubuntu-22.04
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- uses: actions/checkout@v4
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Static analysis check via larastan
run: vendor/bin/phpstan analyse