File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -64,13 +64,17 @@ jobs:
64
64
phpunit :
65
65
name : Unit tests for PHP version ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
66
66
runs-on : ${{ matrix.operating-system }}
67
+ continue-on-error : ${{ matrix.php-versions == '8.0' }}
67
68
strategy :
68
69
matrix :
69
70
operating-system :
70
71
- ubuntu-latest
71
72
- windows-latest
72
73
- macOS-latest
73
74
php-versions : ['7.2', '7.3', '7.4']
75
+ include :
76
+ - operating-system : ubuntu-latest
77
+ php-versions : ' 8.0'
74
78
env :
75
79
extensions : mbstring
76
80
key : cache-v1 # can be any string, change to clear the extension cache.
@@ -100,7 +104,7 @@ jobs:
100
104
uses : shivammathur/setup-php@v2
101
105
with :
102
106
php-version : ${{ matrix.php-versions }}
103
- extension : ${{ env.extensions }}
107
+ extensions : ${{ env.extensions }}
104
108
ini-values : memory_limit=2G, display_errors=On, error_reporting=-1
105
109
106
110
- name : Restore/cache tools folder
You can’t perform that action at this time.
0 commit comments