summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
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