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 2f83785Copy full SHA for 2f83785
.github/workflows/unit-tests.yml
@@ -35,9 +35,16 @@ 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
+ - name: Skip this job when not in a merge queue for some combinations
42
+ run: |
43
+ if [ "${{ !contains(github.ref, 'gh-readonly-queue') }}" ]; then
44
+ if [ "${{ matrix.PHPVERSION }}" -ne "8.4" ]; then
45
+ exit 0
46
+ fi
47
48
- uses: actions/checkout@v4
49
- name: info
50
run: |
0 commit comments