Skip to content

Commit faf0847

Browse files
committed
Add github workflow
1 parent 1a65985 commit faf0847

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on: ["push"]
3+
jobs:
4+
build:
5+
runs-on: windows-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-dotnet@v3
9+
- name: Install dependencies
10+
run: dotnet restore
11+
- name: Publish for win-x64
12+
run: dotnet publish -r win-x64
13+
14+

0 commit comments

Comments
 (0)