Skip to content

Commit 3d11b0b

Browse files
committed
Add macOS & Windows to test matrix
1 parent 60c7ff7 commit 3d11b0b

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/reusable-functional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
name: Behat | PHP ${{ inputs.php }} | WP ${{ inputs.wp }} | ${{ inputs.dbtype == 'sqlite' && 'SQLite' || inputs.dbtype == 'mariadb' && 'MariaDB' || 'MySQL' }}${{ inputs.object_cache == 'sqlite' && ' (Obj Cache)' || '' }}${{ inputs.coverage && ' (with coverage)' || '' }}${{ startsWith( inputs.os, 'windows' ) && ' (Windows)' || '' }}${{ startsWith( inputs.os, 'macos' ) && ' (macOS)' || '' }}
3838
runs-on: ${{ inputs.os || 'ubuntu-22.04' }}
3939

40-
continue-on-error: ${{ inputs.dbtype == 'sqlite' || inputs.dbtype == 'mariadb' || inputs.php == 'nightly' }}
40+
continue-on-error: ${{ inputs.dbtype == 'sqlite' || inputs.dbtype == 'mariadb' || inputs.php == 'nightly' || startsWith( inputs.os, 'windows' ) || startsWith( inputs.os, 'macos' ) }}
4141

4242
env:
4343
MYSQL_HOST: 127.0.0.1

.github/workflows/reusable-testing.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,18 @@ jobs:
306306
"wp": "trunk",
307307
"dbtype": "sqlite",
308308
"object_cache": "sqlite"
309+
},
310+
{
311+
"php": "8.5",
312+
"wp": "trunk",
313+
"dbtype": "sqlite",
314+
"os": "macos-latest"
315+
},
316+
{
317+
"php": "8.5",
318+
"wp": "trunk",
319+
"dbtype": "sqlite",
320+
"os": "windows-latest"
309321
}
310322
]
311323
}

0 commit comments

Comments
 (0)