We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebd5372 commit b5c77f4Copy full SHA for b5c77f4
.github/workflows/linux.yaml
@@ -9,6 +9,8 @@ jobs:
9
strategy:
10
matrix:
11
php:
12
+ - '8.4'
13
+ - '8.4-zts'
14
- '8.3'
15
- '8.3-zts'
16
- '8.2'
.github/workflows/windows.yaml
@@ -11,6 +11,7 @@ jobs:
17
- '8.1'
@@ -22,19 +23,29 @@ jobs:
22
23
- 'ts'
24
vc:
25
- vs16
26
+ - vs17
27
library:
28
- false
29
- true
30
apcu:
31
- ''
32
- 'apcu'
33
+ exclude:
34
+ - php: '8.4'
35
+ vc: vs16
36
+ - php: '8.3'
37
+ vc: vs17
38
+ - php: '8.2'
39
40
+ - php: '8.1'
41
42
43
runs-on: windows-2019
44
45
env:
46
PHP_VER: ${{ matrix.php }}
47
PECL_APCU: ${{ matrix.apcu }}
- VC: vs16
48
+ VC: ${{ matrix.vc }}
49
ARCH: ${{ matrix.arch }}
50
TS: ${{ matrix.ts }}
51
0 commit comments