From 82bd43181f830adc88250a2dee020747c0c18076 Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Thu, 30 Nov 2023 09:45:28 +0100 Subject: [PATCH] run phpcs on 8.3 and run tests on 8.2 and 8.3 --- .github/workflows/build.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac611f7..69e00ab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,13 +5,7 @@ on: [ push, pull_request ] jobs: coding-standards: name: "Coding Standards" - runs-on: "ubuntu-20.04" - - strategy: - matrix: - php-version: - - "8.2" - + runs-on: "ubuntu-latest" steps: - name: "Checkout" uses: "actions/checkout@v2" @@ -20,7 +14,7 @@ jobs: uses: "shivammathur/setup-php@v2" with: coverage: "none" - php-version: "${{ matrix.php-version }}" + php-version: "8.3" tools: "cs2pr" - name: "Install dependencies with Composer" @@ -32,14 +26,11 @@ jobs: tests: name: "Tests" runs-on: "ubuntu-20.04" - strategy: matrix: php-version: - - "8.1" - "8.2" - "8.3" - steps: - name: "Checkout" uses: "actions/checkout@v2"