@@ -4,7 +4,6 @@ on: [push, pull_request]
4
4
5
5
jobs :
6
6
build :
7
-
8
7
runs-on : ${{ matrix.os }}
9
8
10
9
strategy :
@@ -13,12 +12,15 @@ jobs:
13
12
os : [windows-latest, ubuntu-22.04, macos-latest]
14
13
15
14
steps :
15
+ # Prerequisites
16
16
- name : Install tools
17
17
if : matrix.os == 'ubuntu-22.04'
18
18
run : sudo apt-get -yq install mono-vbnc dos2unix
19
19
- uses : actions/checkout@v4
20
20
with :
21
21
submodules : true
22
+
23
+ # Setup .NET
22
24
- name : Setup .NET 6.0
23
25
uses : actions/setup-dotnet@v4
24
26
with :
@@ -31,26 +33,59 @@ jobs:
31
33
uses : actions/setup-dotnet@v4
32
34
with :
33
35
dotnet-version : ' 9.0.x'
36
+
37
+ # CI debug information
34
38
- name : Version Information
35
39
run : |
36
40
dotnet --info
37
41
try { msbuild -version } catch { }
38
42
try { mono --version } catch { }
39
43
shell : pwsh
44
+
45
+ # Build & package
40
46
- name : Build
41
47
run : pwsh make.ps1
42
48
- name : Package
43
49
run : pwsh make.ps1 package
50
+
51
+ # Upload package
44
52
- uses : actions/upload-artifact@v4
45
53
with :
46
54
name : packages-${{ matrix.os }}
47
55
path : Package/Release/Packages
48
- - name : Test (net462)
49
- run : ./make.ps1 -frameworks net462 test-all
50
- shell : pwsh
51
- - name : Test (net6.0)
52
- run : ./make.ps1 -frameworks net6.0 test-all
53
- shell : pwsh
54
- - name : Test (net8.0)
55
- run : ./make.ps1 -frameworks net8.0 test-all
56
+
57
+ test :
58
+ runs-on : ${{ matrix.os }}
59
+
60
+ strategy :
61
+ fail-fast : false
62
+ matrix :
63
+ os : [windows-latest, ubuntu-22.04, macos-latest]
64
+ framework : ['net462', 'net6.0', 'net8.0']
65
+
66
+ steps :
67
+ # Prerequisites
68
+ - uses : actions/checkout@v4
69
+ with :
70
+ submodules : true
71
+
72
+ # Setup .NET
73
+ - name : Setup .NET 6.0
74
+ uses : actions/setup-dotnet@v4
75
+ with :
76
+ dotnet-version : ' 6.0.x'
77
+ - name : Setup .NET 8.0
78
+ uses : actions/setup-dotnet@v4
79
+ with :
80
+ dotnet-version : ' 8.0.x'
81
+ - name : Setup .NET 9.0
82
+ uses : actions/setup-dotnet@v4
83
+ with :
84
+ dotnet-version : ' 9.0.x'
85
+
86
+ # Build & Test
87
+ - name : Build
88
+ run : pwsh make.ps1
89
+ - name : Test (${{ matrix.framework }})
90
+ run : ./make.ps1 -frameworks ${{ matrix.framework }} test-all
56
91
shell : pwsh
0 commit comments