We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4904e41 commit 0caf83bCopy full SHA for 0caf83b
2 files changed
.github/workflows/check-pr.yml .github/workflows/tests.yml.github/workflows/check-pr.yml renamed to .github/workflows/tests.yml
@@ -3,6 +3,9 @@ on:
3
pull_request:
4
branches:
5
- '**.x'
6
+ push:
7
+ branches:
8
+ - '**.x'
9
jobs:
10
testing:
11
name: PHP ${{ matrix.php }}
@@ -23,7 +26,7 @@ jobs:
23
26
- name: Install dependencies
24
27
run: composer install
25
28
- - name: Lint syntax
29
+ - name: Lint syntax / code convention
30
run: composer lint
31
32
- name: Run unit tests
composer.json
@@ -31,7 +31,7 @@
"test": "vendor/bin/phpunit",
"test-coverage-clover": "vendor/bin/phpunit --coverage-clover=coverage.clover.xml",
33
"test-coverage-html": "vendor/bin/phpunit --coverage-html=test/coverage",
34
- "lint": "vendor/bin/phpcs --standard=phpcs.xml src/*"
+ "lint": "vendor/bin/phpcs -v --standard=phpcs.xml src/*"
35
},
36
"scripts-descriptions": {
37
"test": "Runs the phpunit testsuite",
0 commit comments