mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
21 lines
564 B
YAML
21 lines
564 B
YAML
name: PHPStan Compatibility Check
|
|
|
|
on:
|
|
pull_request: null
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
phpstan_compatibility_check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: shivammathur/setup-php@v1
|
|
with:
|
|
php-version: 7.2
|
|
coverage: none # disable xdebug, pcov
|
|
- run: composer install --no-progress --ansi
|
|
- run: bin/rector sync-types
|
|
- run: bin/rector check-static-type-mappers
|