oai-pmh2/.github/workflows/phpstan.yml

32 lines
550 B
YAML
Raw Normal View History

2024-01-03 16:54:13 +01:00
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
actions: read
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Environment
uses: php-actions/composer@v6
with:
2024-08-09 12:29:36 +02:00
command: install
2024-01-03 16:56:27 +01:00
php_version: "8.1"
2024-01-03 16:54:13 +01:00
- name: Run PHPStan
2024-10-23 17:39:11 +02:00
run: composer phpstan:check