2
0
mirror of https://github.com/opencultureconsulting/php-basics.git synced 2025-04-06 00:00:31 +02:00
2024-02-05 15:44:15 +01:00

36 lines
657 B
YAML

name: PHP Static Analyzer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
PHPStan:
name: PHPStan Scanner
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Environment
uses: php-actions/composer@v6
with:
command: update
php_version: "8.1"
- name: Run PHPStan
uses: php-actions/phpstan@v3
with:
path: src/
configuration: phpstan.dist.neon