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:
6464 phpunit :
6565 name : Unit tests for PHP version ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
6666 runs-on : ${{ matrix.operating-system }}
67+ continue-on-error : ${{ matrix.php-versions == '8.0' }}
6768 strategy :
6869 matrix :
6970 operating-system :
7071 - ubuntu-latest
7172 - windows-latest
7273 - macOS-latest
7374 php-versions : ['7.2', '7.3', '7.4']
75+ include :
76+ - operating-system : ubuntu-latest
77+ php-versions : ' 8.0'
7478 env :
7579 extensions : mbstring
7680 key : cache-v1 # can be any string, change to clear the extension cache.
@@ -100,7 +104,7 @@ jobs:
100104 uses : shivammathur/setup-php@v2
101105 with :
102106 php-version : ${{ matrix.php-versions }}
103- extension : ${{ env.extensions }}
107+ extensions : ${{ env.extensions }}
104108 ini-values : memory_limit=2G, display_errors=On, error_reporting=-1
105109
106110 - name : Restore/cache tools folder
You can’t perform that action at this time.
0 commit comments