rector/.github/workflows/validate_project.yaml
2020-05-04 21:23:51 +02:00

28 lines
680 B
YAML

name: Validate Project
on:
pull_request: null
push:
branches:
- master
jobs:
validate_project:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v1
with:
php-version: 7.4
coverage: none
- run: composer install --no-progress --ansi
- run: bin/rector validate-fixtures --ansi
- run: bin/rector validate-fixture-suffix --ansi
- run: bin/rector sync-annotation-parser --dry-run --ansi
- run: bin/rector validate-services-in-sets --ansi