Merge pull request #1300 from PrivateBin/php-84-experimental
tolerate test failures in the PHP development release
This commit is contained in:
commit
4163c4f1d9
9
.github/workflows/tests.yml
vendored
9
.github/workflows/tests.yml
vendored
@ -16,11 +16,16 @@ jobs:
|
|||||||
run: composer install --prefer-dist --no-dev
|
run: composer install --prefer-dist --no-dev
|
||||||
|
|
||||||
PHPunit:
|
PHPunit:
|
||||||
|
name: PHP ${{ matrix.php-versions }} unit tests on ${{ matrix.operating-system }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: ${{ matrix.experimental }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
|
||||||
name: PHP ${{ matrix.php-versions }} unit tests on ${{ matrix.operating-system }}
|
experimental: [false]
|
||||||
|
include:
|
||||||
|
- php-versions: '8.4' # development release, things can break
|
||||||
|
experimental: true
|
||||||
env:
|
env:
|
||||||
extensions: gd, sqlite3
|
extensions: gd, sqlite3
|
||||||
extensions-cache-key-name: phpextensions
|
extensions-cache-key-name: phpextensions
|
||||||
|
Loading…
Reference in New Issue
Block a user