From 0b8379a384c14e536824ae71396196915e29b23b Mon Sep 17 00:00:00 2001 From: Michael Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sat, 7 Dec 2024 18:03:34 +0100 Subject: [PATCH] Run against all PHP versions --- .github/workflows/unit-tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index d753628718..266969eb09 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -35,10 +35,11 @@ jobs: options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3 strategy: matrix: - PHPVERSION: [8.1] - TEST: [Unit] + PHPVERSION: [8.1, 8.2, 8.3, 8.4] + TEST: [Unit, E2E] steps: - - uses: actions/checkout@v4 + - name: Get the repository + uses: actions/checkout@v4 - name: info run: | cat /proc/cmdline && echo && @@ -64,7 +65,7 @@ jobs: - name: Get SQL logs run: docker logs "${{ job.services.sqlserver.id }}" - name: Collect docker logs on failure - if: ${{ !cancelled() }} + if: {{ !cancelled() }} uses: jwalton/gh-docker-logs@v1 with: dest: '/tmp/docker-logs'