diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e4902936f48..70282821bb1 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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 }}