@@ -3,15 +3,11 @@ on: [push, pull_request]
33jobs :
44 ubuntu :
55 runs-on : ubuntu-latest
6- continue-on-error : ${{ matrix.experimental }}
6+ continue-on-error : false
77 strategy :
88 fail-fast : false
99 matrix :
10- php : ['7.2', '7.3', '7.4', '8.0', '8.1']
11- experimental : [false]
12- include :
13- - php : ' 8.2'
14- experimental : true
10+ php : ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
1511 steps :
1612 - name : Checkout
1713 uses : actions/checkout@v3
@@ -81,15 +77,11 @@ jobs:
8177
8278 macos :
8379 runs-on : macos-latest
84- continue-on-error : ${{ matrix.experimental }}
80+ continue-on-error : false
8581 strategy :
8682 fail-fast : false
8783 matrix :
88- php : ['7.2', '7.3', '7.4', '8.0', '8.1']
89- experimental : [false]
90- include :
91- - php : ' 8.2'
92- experimental : true
84+ php : ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
9385 steps :
9486 - name : Checkout
9587 uses : actions/checkout@v3
@@ -115,12 +107,11 @@ jobs:
115107
116108 windows :
117109 runs-on : windows-latest
118- continue-on-error : ${{ matrix.experimental }}
110+ continue-on-error : false
119111 strategy :
120112 fail-fast : false
121113 matrix :
122114 php : ['7.3', '7.4', '8.0', '8.1', '8.2']
123- experimental : [false]
124115 ts : [nts, ts]
125116 steps :
126117 - name : Checkout
0 commit comments