This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/.github/workflows/phpunit-bridge.yml

32 lines
633 B
YAML
Raw Normal View History

name: PhpUnitBridge
on:
2021-02-25 19:32:02 +00:00
push:
paths:
- 'src/Symfony/Bridge/PhpUnit/**'
pull_request:
paths:
- 'src/Symfony/Bridge/PhpUnit/**'
2021-02-25 19:32:02 +00:00
defaults:
run:
shell: bash
2021-02-25 19:32:02 +00:00
jobs:
lint:
name: Lint
2021-03-02 09:27:35 +00:00
runs-on: Ubuntu-20.04
2021-02-25 19:32:02 +00:00
steps:
- name: Checkout
uses: actions/checkout@v2
2021-02-25 19:32:02 +00:00
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: "none"
php-version: "5.5"
2021-02-25 19:32:02 +00:00
- name: Lint
run: find ./src/Symfony/Bridge/PhpUnit -name '*.php' | grep -v -e /Tests/ -e ForV6 -e ForV7 -e ForV8 -e ForV9 -e ConstraintLogicTrait | parallel -j 4 php -l {}