Skip to content

build(dependencies): upgrade Filament to v4.7.0 and update Composer d… #48

build(dependencies): upgrade Filament to v4.7.0 and update Composer d…

build(dependencies): upgrade Filament to v4.7.0 and update Composer d… #48

Workflow file for this run

name: PHPStan
on:
push:
paths:
- '**.php'
- 'phpstan.neon.dist'
jobs:
phpstan:
name: phpstan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
- name: Install composer dependencies
uses: ramsey/composer-install@v3
env:
COMPOSER_AUTH: '{"http-basic": {"nativephp.composer.sh": {"username": "${{secrets.NATIVEPHP_USERNAME}}", "password": "${{secrets.NATIVEPHP_PASSWORD}}"}}}'
- name: Run PHPStan
run: ./vendor/bin/phpstan --error-format=github