Skip to content

Commit 0269f39

Browse files
authored
ci: add Windows to unit test matrix (anomalyco#14836)
1 parent 0a91196 commit 0269f39

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,16 @@ on:
88
workflow_dispatch:
99
jobs:
1010
unit:
11-
name: unit (linux)
12-
runs-on: blacksmith-4vcpu-ubuntu-2404
11+
name: unit (${{ matrix.settings.name }})
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
settings:
16+
- name: linux
17+
host: blacksmith-4vcpu-ubuntu-2404
18+
- name: windows
19+
host: blacksmith-4vcpu-windows-2025
20+
runs-on: ${{ matrix.settings.host }}
1321
defaults:
1422
run:
1523
shell: bash

0 commit comments

Comments
 (0)