Skip to content

Commit acd4c1f

Browse files
committed
Add php 8 to build matrix
1 parent 2e17bb1 commit acd4c1f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/push.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)