Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,35 @@ jobs:
composer install --no-progress
composer rector

docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v1
with:
php-version: 7.2
coverage: none # disable xdebug, pcov
- run: |
composer install --no-progress
composer check-docs
Comment thread
TomasVotruba marked this conversation as resolved.

simple-checks:
name: Simple checks
Comment thread
TomasVotruba marked this conversation as resolved.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v1
with:
php-version: 7.2
coverage: none # disable xdebug, pcov
- run: |
composer install --no-progress
php ci/check_services_in_yaml_configs.php
php ci/run_all_sets.php

fatal-scan:
name: Scan Fatal Errors
runs-on: ubuntu-latest
Expand Down
19 changes: 1 addition & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,7 @@ jobs:
install:
# install lowest dependencies
- composer update --prefer-lowest --no-progress

-
name: Documentation
php: 7.2
script:
- composer check-docs

-
name: Simple checks
php: 7.2
script:
- php ci/check_services_in_yaml_configs.php
- php ci/run_all_sets.php

-

# Run standalone install in non-root package, ref https://github.com/rectorphp/rector/issues/732
stage: test
php: 7.3
Expand Down Expand Up @@ -147,10 +133,7 @@ jobs:
# env: PHP_VERSION=7.3.10

allow_failures:
- name: ECS
- name: Rector
- name: Standalone Run
- name: Documentation
- os: windows

cache:
Expand Down