forked from palantirnet/drupal-rector
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (22 loc) · 996 Bytes
/
phpstan.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: phpstan
# This test will run on every pull request, and on every commit on any branch
on: [push, pull_request]
jobs:
run_static_analysis_phpstan_analyze:
name: Static analysis with PHPStan
# START: SHARED SETUP
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
coverage: none # disable xdebug, pcov
tools: composer:v2
extensions: dom, curl, libxml, mbstring, zip, pdo, mysql, pdo_mysql, bcmath, gd, exif, iconv
# Uncomment to enable SSH access to Github Actions - https://github.com/marketplace/actions/debugging-with-tmate#getting-started
# - name: Debugging with tmate
# uses: mxschmitt/action-tmate@v2
# END: SHARED SETUP
- run: composer install
- run: php vendor/bin/phpstan