From 937374431a0d0076753b39a0593d3276aee82565 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 28 May 2020 08:42:00 +0100 Subject: [PATCH] Fix Windows builds running Pest --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d22ce69d..40136288 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,7 +36,7 @@ jobs: run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist - name: Unit Tests - run: bin/pest --colors=always --exclude-group=integration + run: php bin/pest --colors=always --exclude-group=integration - name: Integration Tests - run: bin/pest --colors=always --group=integration + run: php bin/pest --colors=always --group=integration