Skip to content

Commit 92430c1

Browse files
committed
Another attempt in disabling the redis-extension
1 parent b2d6c42 commit 92430c1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/reusable_phplinter.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ jobs:
6969
sleep $((random % 10))
7070
phive install overtrue/phplint@~9.6.0 --force-accept-unsigned --target ./bin
7171
72-
- name: Lint PHP files
72+
- name: Disable redis-extension
7373
run: |
7474
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
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

Comments
 (0)