From 6e3734e4b5afa9ef968136268b54f9a4aacec6f5 Mon Sep 17 00:00:00 2001 From: Shashwat Mishra <11258035+secrethash@users.noreply.github.com> Date: Sun, 30 Jul 2023 17:36:36 +0530 Subject: [PATCH] Change: Seperate Pest Plugin Activation --- .github/workflows/run-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7333cf5..675fbc8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -30,8 +30,11 @@ jobs: echo "::add-matcher::${{ runner.tool_cache }}/php.json" echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + - name: Activate Pest Composer Plugin + run: composer config --no-plugins allow-plugins.pestphp/pest-plugin true + - name: Install dependencies - run: composer config --no-plugins allow-plugins.pestphp/pest-plugin true && composer update --${{ matrix.stability }} --prefer-dist --no-interaction + run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Execute tests run: vendor/bin/pest