We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a91196 commit 0269f39Copy full SHA for 0269f39
.github/workflows/test.yml
@@ -8,8 +8,16 @@ on:
8
workflow_dispatch:
9
jobs:
10
unit:
11
- name: unit (linux)
12
- runs-on: blacksmith-4vcpu-ubuntu-2404
+ name: unit (${{ matrix.settings.name }})
+ 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 }}
21
defaults:
22
run:
23
shell: bash
0 commit comments