8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78f5c26 + 8490b8b commit bdda36dCopy full SHA for bdda36d
.github/workflows/phpunit-bridge.yml
@@ -0,0 +1,31 @@
1
+name: PhpUnitBridge
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'src/Symfony/Bridge/PhpUnit/**'
7
+ pull_request:
8
9
10
11
+defaults:
12
+ run:
13
+ shell: bash
14
15
+jobs:
16
+ lint:
17
+ name: Lint
18
+ runs-on: Ubuntu-20.04
19
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v2
23
24
+ - name: Setup PHP
25
+ uses: shivammathur/setup-php@v2
26
+ with:
27
+ coverage: "none"
28
+ php-version: "7.1"
29
30
+ - name: Lint
31
+ run: find ./src/Symfony/Bridge/PhpUnit -name '*.php' | grep -v -e /Tests/ -e ForV7 -e ForV8 -e ForV9 -e ConstraintLogicTrait | parallel -j 4 php -l {}
0 commit comments