From 8e4ec5bb6e64748f6f76083f98f94c1b737c1cb9 Mon Sep 17 00:00:00 2001 From: David Rans Date: Tue, 20 Aug 2024 11:05:50 -0700 Subject: [PATCH] Do not use matrix of one php version --- .github/workflows/psalm.yml | 9 ++------- .github/workflows/test.yml | 8 ++------ 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index 6eeca5d..4de2e14 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -13,20 +13,15 @@ jobs: name: psalm runs-on: ubuntu-latest - strategy: - matrix: - php-version: '8.3' - timeout-minutes: 15 steps: - name: Checkout code uses: actions/checkout@v4 - - name: Set up PHP ${{ matrix.php-version }} + - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php-version }} - + php-version: '8.3' - name: Run composer install run: composer install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37f75ac..8b278e0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,18 +12,14 @@ jobs: test: runs-on: ubuntu-latest - strategy: - matrix: - php-version: '8.3' - steps: - name: Checkout code uses: actions/checkout@v4 - - name: Set up PHP ${{ matrix.php-version }} + - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php-version }} + php-version: '8.3' - name: Install dependencies run: composer install