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'