Skip to content

fix(deps): update illuminate packages to v11 (major) #38

fix(deps): update illuminate packages to v11 (major)

fix(deps): update illuminate packages to v11 (major) #38

name: static analysis
on:
push:
branches:
- main
- '*.x'
pull_request:
branches:
- main
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
name: Static Analysis
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:v2
coverage: none
- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 3
command: composer update --prefer-stable --prefer-dist --no-interaction --no-progress
- name: Execute type checking
run: vendor/bin/phpstan
- name: Execute lint
run: vendor/bin/pint --test