We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a16b21 commit 61040bbCopy full SHA for 61040bb
1 file changed
.github/workflows/reusable-phpunit-test.yml
@@ -167,6 +167,12 @@ jobs:
167
sudo apt-get update
168
sudo apt-get install -y imagemagick libmagickwand-dev ghostscript poppler-data libjbig2dec0:amd64 libopenjp2-7:amd64 libheif-dev
169
170
+ - name: Check ImageMagick AVIF support
171
+ if: ${{ contains(inputs.extra-extensions, 'imagick') }}
172
+ run: |
173
+ magick -list delegate | grep -i "heic\|avif" || echo "No HEIC/AVIF delegate found"
174
+ apt-cache show imagemagick | grep -i "version"
175
+
176
- name: Checkout base branch for PR
177
if: github.event_name == 'pull_request'
178
uses: actions/checkout@v6
0 commit comments