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 6a9571a commit 4895f54Copy full SHA for 4895f54
.github/workflows/unit-tests.yml
@@ -33,6 +33,9 @@ jobs:
33
mode: low-deps
34
- php: '8.3'
35
- php: '8.4'
36
+ # brotli and zstd extensions are optional, when not present the commands will be used instead,
37
+ # we must test both scenarios
38
+ extensions: ${{ env.extensions }},brotli,zstd
39
#mode: experimental
40
fail-fast: false
41
@@ -53,6 +56,12 @@ jobs:
53
56
extensions: "${{ matrix.extensions || env.extensions }}"
54
57
tools: flex
55
58
59
+ - name: Install optional commands
60
+ if: matrix.php == '8.4'
61
+ run: |
62
+ sudo apt-get update
63
+ sudo apt-get install zopfli
64
+
65
- name: Configure environment
66
run: |
67
git config --global user.email ""
0 commit comments