mirror of
https://github.com/pi-hole/web.git
synced 2026-02-21 10:17:39 +00:00
22 lines
340 B
YAML
22 lines
340 B
YAML
name: PHPStan
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.1.0
|
|
|
|
- name: Install composer
|
|
uses: php-actions/composer@v6
|
|
|
|
- name: Run PHPStan
|
|
uses: php-actions/phpstan@v3
|
|
with:
|
|
configuration: phpstan.neon.dist
|
|
memory_limit: 256M
|
|
|