We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 739f42f commit b8d6cb4Copy full SHA for b8d6cb4
1 file changed
.github/workflows/reusable_phplinter.yml
@@ -40,14 +40,12 @@ jobs:
40
- name: Setup PHP runtime
41
uses: shivammathur/setup-php@v2
42
with:
43
- tools: composer, phive
+ tools: phive
44
php-version: ${{ inputs.php-version }}
45
coverage: "none"
46
- # A conflict exists between overtrue/phplint and redis
47
extensions: :redis
48
49
- - name: Install overtrue/phplint (v9.7)
50
- run: composer require overtrue/phplint --ignore-platform-reqs
51
-
+ - name: Install overtrue/phplint (latest)
+ run: phive install overtrue/phplint --force-accept-unsigned --target ./bin
52
- name: Lint PHP files
53
- run: vendor/bin/phplint --exclude=vendor --no-cache --no-progress -v
+ run: ./bin/phplint --no-cache --no-progress -v
0 commit comments