File tree 1 file changed +15
-8
lines changed
1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change 9
9
branches : [ v1_release, v1_develop ]
10
10
paths-ignore :
11
11
- ' **.md'
12
-
13
12
jobs :
14
- build :
15
- runs-on : ubuntu-latest
13
+ non_parallel_unittests :
14
+ name : Non-Parallel Unit Tests
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ # Turn off fail-fast to let all runners run even if there are errors
18
+ fail-fast : true
19
+ matrix :
20
+ os : [ ubuntu-latest, windows-latest, macos-latest ]
21
+
16
22
timeout-minutes : 10
17
23
steps :
18
- - uses : actions/checkout@v4
24
+
25
+ - name : Checkout code
26
+ uses : actions/checkout@v4
19
27
20
28
- name : Setup .NET Core
21
29
uses : actions/setup-dotnet@v4
22
30
with :
23
- dotnet-version : 7.0
31
+ dotnet-version : 8.x
24
32
dotnet-quality : ' ga'
25
33
26
34
- name : Install dependencies
27
35
run : |
28
36
dotnet restore
29
37
30
- - name : Build Debug
31
- run : |
32
- dotnet build --configuration Debug --no-restore
38
+ - name : Build Solution Debug
39
+ run : dotnet build --configuration Debug --no-restore
33
40
34
41
- name : Test
35
42
run : |
You can’t perform that action at this time.
0 commit comments