Skip to content

Commit 6eeddd5

Browse files
committed
add ci
1 parent 0a56b8c commit 6eeddd5

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.github/workflows/dotnet-ci.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: dotnet-ci
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Setup .NET SDK
12+
uses: actions/setup-dotnet@v1
13+
with:
14+
dotnet-version: '7.0.x'
15+
- name: Install .NET MAUI
16+
run: dotnet workload install maui
17+
- name: Restore dependencies
18+
run: dotnet restore ./src/c#/GeneralUpdate.Tool.sln
19+
- name: build
20+
run: dotnet build ./src/c#/GeneralUpdate.Tool.sln -c Release
-50 Bytes
Binary file not shown.
3.67 MB
Binary file not shown.

0 commit comments

Comments
 (0)