Skip to content

Commit 05a028c

Browse files
committed
Added gh workflow
1 parent 9b6cc62 commit 05a028c

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)