From 827076f4eaad16ff0fdb65f7d5896d0a8cd2fd1c Mon Sep 17 00:00:00 2001 From: Michael Reichardt Date: Sat, 8 Jun 2024 00:08:34 +0200 Subject: [PATCH] Fiddle with the pipeline. --- .github/workflows/phpunit-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit-tests.yml b/.github/workflows/phpunit-tests.yml index 8b849097..ddc5c9f4 100644 --- a/.github/workflows/phpunit-tests.yml +++ b/.github/workflows/phpunit-tests.yml @@ -11,7 +11,7 @@ on: - unit - e2e required: false - default: default + default: 'default' push: pull_request: branches: @@ -35,6 +35,6 @@ jobs: php: ${{ matrix.php }} phpunit-config: 'phpunit.xml.dist' # for a manual workflow dispatch -> will use the TEST_SUITE value - # for pushes to any branch -> will only run unit tests + # for all pushes to any branch -> will only run unit tests # for pull requests to the trunk -> will run unit and e2e tests phpunit-testsuite: ${{ (github.event_name == 'workflow_dispatch' && github.event.inputs.TEST_SUITE != '') && github.event.inputs.TEST_SUITE || (github.event_name == 'push' && 'unit') || 'default' }}