- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- Add support for macOS Big Sur
macos-11.0
. docs
runs-on: macos-11.0
- Add support for
fail-fast
flag. It will mark the workflow as failed if an extension or tool fails to install. Closes #306
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7,4'
tools: deployer
env:
fail-fast: true
- Add support for
igbinary
andimagick
forPHP 5.6
and newer onmacOS
usingshivammathur/homebrew-extensions
. - Fix setup for extensions
ast
,phalcon4
,pdo_oci
andoci8
after october update inppa:ondrej/php
. - Fix problem matchers setup when action is called more than once in the same workflow.
- Switch to
apt-get
tillapt-fast
is updated to1.9.10
on the runner. - Fetch
PhpManager
from release assets. - Remove patch for
RLIMIT_CORE
bug insudo
, fixed upstream. - Minor fixes for typos in scripts.
- Update
README
.
Thanks @mlocati for the contribution 🎉