We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33728da commit 9d6da5bCopy full SHA for 9d6da5b
.github/workflows/ci.yml
@@ -70,6 +70,15 @@ jobs:
70
php-version: ${{ matrix.php-version }}
71
tools: php-config
72
73
+ - name: Setup php-fpm for Linux
74
+ if: matrix.os == 'ubuntu-24.04'
75
+ run: |
76
+ find /usr/sbin -name "php-fpm*"
77
+ sudo apt-get update
78
+ sudo apt-get install -y php${{ matrix.php-version }}-fpm
79
+ sudo rm -f /usr/sbin/php-fpm
80
+ sudo ln -s /usr/sbin/php-fpm${{ matrix.php-version }} /usr/sbin/php-fpm
81
+
82
- name: PHP version
83
run: |
84
which php
0 commit comments