We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6cc62 commit 05a028cCopy full SHA for 05a028c
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ branches: [ "main" ]
7
8
+jobs:
9
+ build:
10
+ strategy:
11
+ matrix:
12
+ configuration: [Debug, UIA2, UIA3]
13
+ runs-on: windows-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0
20
21
+ - name: Install .NET Core
22
+ uses: actions/setup-dotnet@v4
23
24
+ dotnet-version: 8.0.x
25
26
+ - name: Setup MSBuild.exe
27
+ uses: microsoft/setup-msbuild@v2
28
29
+ - name: Prepare Cake.Build
30
+ run: dotnet tool restore
31
32
+ - name: Execute unit tests
33
+ run: dotnet-cake --target "Test"
0 commit comments