File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : .NET Desktop
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : windows-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+
17
+ - name : Setup .NET
18
+ uses : actions/setup-dotnet@v1
19
+ with :
20
+ dotnet-version : 8.0.x
21
+
22
+ - name : Restore dependencies
23
+ run : dotnet restore ClassToXaml.Skia.WPF/ClassToXaml.Skia.WPF.csproj
24
+
25
+ - name : Build
26
+ run : dotnet build ClassToXaml.Skia.WPF/ClassToXaml.Skia.WPF.csproj --configuration Release --no-restore
27
+
28
+ - name : Test
29
+ run : dotnet test ClassToXaml.Skia.WPF/ClassToXaml.Skia.WPF.csproj --no-restore --verbosity normal
30
+
31
+ - name : Publish
32
+ run : dotnet publish ClassToXaml.Skia.WPF/ClassToXaml.Skia.WPF.csproj --configuration Release --no-build --output ./published
You can’t perform that action at this time.
0 commit comments