From 525e4d6c40421126a64ee52ad8037733e1323da9 Mon Sep 17 00:00:00 2001 From: Luca Tumedei Date: Fri, 13 Dec 2024 16:59:14 +0100 Subject: [PATCH] build(.github) update qa workflow to use php 7.1 min --- .github/workflows/qa.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/qa.yaml b/.github/workflows/qa.yaml index d1b1f49..7810fd7 100644 --- a/.github/workflows/qa.yaml +++ b/.github/workflows/qa.yaml @@ -7,38 +7,38 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 - - name: Setup PHP 5.6 + - name: Setup PHP 7.1 uses: shivammathur/setup-php@v2 with: - php-version: 5.6 + php-version: 7.1 - name: Install dependencies uses: "ramsey/composer-install@v2" - name: Run phpcs run: make phpcs phpstan: - name: phpstan on PHP 5.6 + name: phpstan on PHP 7.1 runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - - name: Setup PHP 5.6 + - name: Setup PHP 7.1 uses: shivammathur/setup-php@v2 with: - php-version: 5.6 + php-version: 7.1 - name: Install dependencies uses: "ramsey/composer-install@v2" - name: Run phpstan run: make phpstan phan: - name: phan on PHP 5.6 + name: phan on PHP 7.1 runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - - name: Setup PHP 5.6 + - name: Setup PHP 7.1 uses: shivammathur/setup-php@v2 with: - php-version: 5.6 + php-version: 7.1 - name: Install dependencies uses: "ramsey/composer-install@v2" - name: Run phan