We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 504bad0 commit 0446f86Copy full SHA for 0446f86
1 file changed
.github/workflows/continuous-integration.yml
@@ -97,6 +97,14 @@ jobs:
97
sleep 8
98
redis-cli ping
99
100
+ - name: Install Memcached (macOS)
101
+ if: runner.os == 'macOS'
102
+ run: |
103
+ brew install memcached
104
+ brew services start memcached
105
+ pecl install -f memcached
106
+ echo "extension=memcached.so" >> $(php --ini | grep "Loaded Configuration" | awk '{print $4}')
107
+
108
- name: Setup PHP ${{ matrix.php-version }}
109
uses: shivammathur/setup-php@v2
110
with:
0 commit comments