MDL-79853 core: Add phpunit options to manual runs

This commit is contained in:
Andrew Nicols
2023-10-26 14:48:59 +08:00
parent bfb3763947
commit 38f2aaf4d7
+7 -2
View File
@@ -1,7 +1,12 @@
name: Windows Testing
on:
workflow_dispatch
workflow_dispatch:
inputs:
phpunit_extra_options:
description: Additional options to apply to PHPUnit
required: false
default: ''
env:
php: 8.2
@@ -141,4 +146,4 @@ jobs:
env:
dbtype: ${{ matrix.db }}
phpunit_options: ${{ secrets.phpunit_options }}
run: vendor/bin/phpunit $phpunit_options
run: vendor/bin/phpunit $phpunit_options ${{ inputs.phpunit_extra_options }}