-
-
Notifications
You must be signed in to change notification settings - Fork 9
26 lines (24 loc) · 1.02 KB
/
Copy pathunit-tests-windows.yml
File metadata and controls
26 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Windows
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
windows:
uses: ./.github/workflows/unit-tests.yml
with:
# net462 (.NET Framework) is not supported on ARM64, so it only runs on x64.
matrix: |
{
"include": [
{ "runner": "windows-latest", "os": "windows", "arch": "x64", "framework": "net462" },
{ "runner": "windows-latest", "os": "windows", "arch": "x64", "framework": "net6.0" },
{ "runner": "windows-latest", "os": "windows", "arch": "x64", "framework": "net8.0" },
{ "runner": "windows-latest", "os": "windows", "arch": "x64", "framework": "net9.0" },
{ "runner": "windows-11-arm", "os": "windows", "arch": "arm64", "framework": "net6.0" },
{ "runner": "windows-11-arm", "os": "windows", "arch": "arm64", "framework": "net8.0" },
{ "runner": "windows-11-arm", "os": "windows", "arch": "arm64", "framework": "net9.0" }
]
}