Skip to content

Commit dd78add

Browse files
committed
Add matrix to job
1 parent e62a268 commit dd78add

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

pr-checks/sync.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,13 +184,20 @@ function main(): void {
184184
}
185185
}
186186
const checkJob: Record<string, any> = {
187+
strategy: {
188+
"fail-fast": false,
189+
matrix: {
190+
include: matrix,
191+
},
192+
},
187193
name: checkSpecification.name,
188194
if: "github.triggering_actor != 'dependabot[bot]'",
189195
permissions: {
190196
contents: "read",
191197
"security-events": "read",
192198
},
193199
"timeout-minutes": 45,
200+
"runs-on": "${{ matrix.os }}",
194201
};
195202

196203

0 commit comments

Comments
 (0)