Skip to content

Commit

Permalink
fix: Fix compatibility with php 8.4 and newer ImageMagick library ver…
Browse files Browse the repository at this point in the history
…sions
  • Loading branch information
michalananapps committed Nov 30, 2024
1 parent 2ed2214 commit 620730e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ jobs:
shell: cmd
strategy:
matrix:
version: ["7.4", "8.0"]
arch: [x64]
ts: [ts]
runs-on: windows-2019
os: [windows-2019, windows-2022]
version: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
arch: [x64]
ts: [ts]
exclude:
- {os: windows-2019, version: "8.4"}
- {os: windows-2019, version: "8.3"}
- {os: windows-2019, version: "8.2"}
- {os: windows-2019, version: "8.1"}
- {os: windows-2019, version: "8.0"}
- {os: windows-2022, version: "7.4"}
runs-on: ${{matrix.os}}
steps:
- name: Checkout imagick
uses: actions/checkout@v4
Expand Down

0 comments on commit 620730e

Please sign in to comment.