We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c09f2 commit 7814e5bCopy full SHA for 7814e5b
1 file changed
.github/workflows/reusable_phplinter.yml
@@ -43,6 +43,7 @@ jobs:
43
tools: phive
44
php-version: ${{ inputs.php-version }}
45
coverage: "none"
46
+ extensions: none
47
48
- name: Install overtrue/phplint (v3.4)
49
if: inputs.php-version == '7.4'
@@ -68,6 +69,11 @@ jobs:
68
69
sleep $((random % 10))
70
phive install overtrue/phplint@~9.6.0 --force-accept-unsigned --target ./bin
71
72
+ - 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 -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