summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorLuke Parker <[email protected]>2026-02-24 09:33:33 +1000
committerGitHub <[email protected]>2026-02-24 09:33:33 +1000
commit0269f39a178ad02b88196efe131dcba87849ee4d (patch)
treeb6ec0dfb748d14bb9d1ccfe0b4117919d9792f54 /.github/workflows
parent0a9119691909dec1fa63ddb14f71e12e937215a6 (diff)
downloadopencode-0269f39a178ad02b88196efe131dcba87849ee4d.tar.gz
opencode-0269f39a178ad02b88196efe131dcba87849ee4d.zip
ci: add Windows to unit test matrix (#14836)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 647b9e188..f7b00516f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -8,8 +8,16 @@ on:
workflow_dispatch:
jobs:
unit:
- name: unit (linux)
- runs-on: blacksmith-4vcpu-ubuntu-2404
+ name: unit (${{ matrix.settings.name }})
+ strategy:
+ fail-fast: false
+ matrix:
+ settings:
+ - name: linux
+ host: blacksmith-4vcpu-ubuntu-2404
+ - name: windows
+ host: blacksmith-4vcpu-windows-2025
+ runs-on: ${{ matrix.settings.host }}
defaults:
run:
shell: bash