Add matrix to job

This commit is contained in:
Michael B. Gale
2026-02-28 16:27:26 +00:00
parent e62a268a73
commit dd78add36d

View File

@@ -184,6 +184,12 @@ function main(): void {
}
}
const checkJob: Record<string, any> = {
strategy: {
"fail-fast": false,
matrix: {
include: matrix,
},
},
name: checkSpecification.name,
if: "github.triggering_actor != 'dependabot[bot]'",
permissions: {
@@ -191,6 +197,7 @@ function main(): void {
"security-events": "read",
},
"timeout-minutes": 45,
"runs-on": "${{ matrix.os }}",
};