From d75eed3ceca08ec0d51030af37d57f59093177f9 Mon Sep 17 00:00:00 2001 From: Marc Reichel Date: Thu, 4 Jul 2024 23:23:18 +0200 Subject: [PATCH] fix: Invalid prefer-stable option --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f5caa7..3904262 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,12 @@ concurrency: jobs: pest: - name: PEST - PHP ${{ matrix.php }} - ${{ matrix.stability }} + name: PEST - PHP ${{ matrix.php }} runs-on: ubuntu-latest strategy: fail-fast: true matrix: php: [8.4, 8.3, 8.2] - stability: [prefer-stable] steps: - name: Checkout uses: actions/checkout@v4 @@ -30,7 +29,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Composer install - run: composer install --${{ matrix.stability }} --prefer-dist --no-interaction --no-ansi --no-progress + run: composer install --no-interaction --no-ansi --no-progress - name: Run PEST (with coverage) run: composer test:coverage phpstan: