From e4b7bd4f6da249b8f41e3cc19e9d343dbe32bd04 Mon Sep 17 00:00:00 2001 From: Sally Young Date: Tue, 29 Aug 2023 15:47:33 +0100 Subject: [PATCH] Test on multiple PHP versions --- .github/workflows/Tests.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 600dc02..b7005ca 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -11,16 +11,17 @@ concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true -strategy: - matrix: - php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] - fail-fast: false jobs: - Mink: + Tests: runs-on: ubuntu-latest + strategy: + matrix: + php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] + fail-fast: false + steps: - uses: actions/checkout@v3