We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abbcb97 commit 0b8379aCopy full SHA for 0b8379a
.github/workflows/unit-tests.yml
@@ -35,10 +35,11 @@ jobs:
35
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
36
strategy:
37
matrix:
38
- PHPVERSION: [8.1]
39
- TEST: [Unit]
+ PHPVERSION: [8.1, 8.2, 8.3, 8.4]
+ TEST: [Unit, E2E]
40
steps:
41
- - uses: actions/checkout@v4
+ - name: Get the repository
42
+ uses: actions/checkout@v4
43
- name: info
44
run: |
45
cat /proc/cmdline && echo &&
@@ -64,7 +65,7 @@ jobs:
64
65
- name: Get SQL logs
66
run: docker logs "${{ job.services.sqlserver.id }}"
67
- name: Collect docker logs on failure
- if: ${{ !cancelled() }}
68
+ if: {{ !cancelled() }}
69
uses: jwalton/gh-docker-logs@v1
70
with:
71
dest: '/tmp/docker-logs'
0 commit comments