rector/.github/workflows/validate_project.yaml

28 lines
680 B
YAML
Raw Normal View History

2020-04-23 22:44:07 +02:00
name: Validate Project
on:
pull_request: null
push:
branches:
- master
jobs:
2020-04-23 22:44:07 +02:00
validate_project:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v1
with:
2020-03-29 16:16:27 +02:00
php-version: 7.4
2020-04-22 14:21:58 +02:00
coverage: none
2020-05-02 11:47:43 +02:00
- run: composer install --no-progress --ansi
2020-03-29 16:16:27 +02:00
- run: bin/rector validate-fixtures --ansi
2020-04-23 20:48:53 +02:00
- run: bin/rector validate-fixture-suffix --ansi
- run: bin/rector sync-annotation-parser --dry-run --ansi
- run: bin/rector validate-services-in-sets --ansi