File tree 3 files changed +14
-7
lines changed
3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 14
14
name : CI
15
15
16
16
runs-on : ${{ matrix.os }}
17
+ continue-on-error : ${{ matrix.experimental }}
17
18
18
19
strategy :
19
20
matrix :
@@ -23,18 +24,24 @@ jobs:
23
24
- " 7.4"
24
25
- " 8.0"
25
26
- " 8.1"
27
+ - " 8.2"
28
+ - " 8.3"
26
29
os : [ubuntu-latest]
30
+ experimental : [false]
27
31
include :
28
32
- php-version : " 7.2"
29
33
os : windows-latest
30
- - php-version : " 8.1"
34
+ experimental : false
35
+ - php-version : " 8.3"
31
36
os : windows-latest
32
- - php-version : " 8.2"
37
+ experimental : false
38
+ - php-version : " 8.4"
33
39
os : ubuntu-latest
40
+ experimental : true
34
41
35
42
steps :
36
43
- name : Checkout
37
- uses : actions/checkout@v3
44
+ uses : actions/checkout@v4
38
45
39
46
- name : Install PHP
40
47
uses : shivammathur/setup-php@v2
48
55
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
49
56
50
57
- name : Restore cached dependencies
51
- uses : actions/cache@v3
58
+ uses : actions/cache@v4
52
59
with :
53
60
path : ${{ steps.composercache.outputs.dir }}
54
61
key : php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
Original file line number Diff line number Diff line change 20
20
21
21
steps :
22
22
- name : Checkout
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
25
25
- name : Install PHP
26
26
uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 22
22
23
23
steps :
24
24
- name : Checkout
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
27
27
- name : Install PHP
28
28
uses : shivammathur/setup-php@v2
36
36
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
37
37
38
38
- name : Restore cached dependencies
39
- uses : actions/cache@v3
39
+ uses : actions/cache@v4
40
40
with :
41
41
path : ${{ steps.composercache.outputs.dir }}
42
42
key : php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
You can’t perform that action at this time.
0 commit comments