File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change 16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
with :
19
- submodules : true
19
+ name : CI
20
+
21
+ on : [push, pull_request]
22
+
23
+ env :
24
+ CARGO_TERM_COLOR : always
25
+
26
+ jobs :
27
+ build :
28
+ strategy :
29
+ matrix :
30
+ configuration : [Debug, Release]
31
+
32
+ runs-on : windows-latest
33
+
34
+ steps :
35
+ - uses : actions/checkout@v4
36
+ with :
37
+ submodules : ' recursive'
38
+
39
+ - name : Install .NET
40
+ uses : actions/setup-dotnet@v3
41
+ with :
42
+ dotnet-version : 8.0.x
43
+
44
+ - name : Install MSBuild
45
+ uses : microsoft/setup-msbuild@v1
46
+
47
+ - name : Configure
48
+ run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.configuration}}
49
+
50
+ - name : Build
51
+ run : cmake --build ${{github.workspace}}/build
52
+
20
53
21
54
- name : Install .NET
22
55
uses : actions/setup-dotnet@v3
You can’t perform that action at this time.
0 commit comments