We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d6c42 commit 92430c1Copy full SHA for 92430c1
.github/workflows/reusable_phplinter.yml
@@ -69,7 +69,11 @@ jobs:
69
sleep $((random % 10))
70
phive install overtrue/phplint@~9.6.0 --force-accept-unsigned --target ./bin
71
72
- - name: Lint PHP files
+ - name: Disable redis-extension
73
run: |
74
mv /etc/php/{{ inputs.php-version }}/conf.d/ext-redis.conf /etc/php/{{ inputs.php-version }}/conf.d/ext-redis.conf.bak
75
- php -n ./bin/phplint --no-cache --no-progress -v
+ php -r "var_dump(get_loaded_extensions());"
76
+
77
+ - name: Lint PHP files
78
+ run: |
79
+ ./bin/phplint --no-cache --no-progress -v
0 commit comments