-
-
Notifications
You must be signed in to change notification settings - Fork 9
24 lines (22 loc) · 859 Bytes
/
Copy pathunit-tests-linux.yml
File metadata and controls
24 lines (22 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Linux
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
linux:
uses: ./.github/workflows/unit-tests.yml
with:
matrix: |
{
"include": [
{ "runner": "ubuntu-latest", "os": "linux", "arch": "x64", "framework": "net6.0" },
{ "runner": "ubuntu-latest", "os": "linux", "arch": "x64", "framework": "net8.0" },
{ "runner": "ubuntu-latest", "os": "linux", "arch": "x64", "framework": "net9.0" },
{ "runner": "ubuntu-24.04-arm", "os": "linux", "arch": "arm64", "framework": "net6.0" },
{ "runner": "ubuntu-24.04-arm", "os": "linux", "arch": "arm64", "framework": "net8.0" },
{ "runner": "ubuntu-24.04-arm", "os": "linux", "arch": "arm64", "framework": "net9.0" }
]
}