tools/github actions: do not cancel all PHP jobs when a single one fails

- https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#handling-failures
This commit is contained in:
nodiscc 2022-09-24 18:06:52 +02:00
parent 6180c859d3
commit 93a826f0a4
No known key found for this signature in database
GPG key ID: 067FC4266A4B6909

View file

@ -4,6 +4,7 @@ jobs:
php:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
name: PHP ${{ matrix.php-versions }}