Improves detection for Lectrus, Maxcom and Sunmax devices #4647
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHPStan check | |
on: | |
pull_request: | |
push: | |
branches: [ master ] | |
permissions: | |
actions: read | |
checks: read | |
contents: read | |
deployments: none | |
issues: read | |
packages: none | |
pull-requests: read | |
repository-projects: none | |
security-events: none | |
statuses: none | |
jobs: | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
tools: composer:v2 | |
- name: "Composer install" | |
run: | | |
composer install --ignore-platform-reqs | |
- name: PHPStan | |
run: | | |
php -v | |
./vendor/bin/phpstan analyse -c phpstan.neon |