Skip to content

Commit d64ed06

Browse files
authored
+ CI
Add CI with Github Actions
1 parent a301a6f commit d64ed06

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: .NET Core
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: windows-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Setup .NET Core
13+
uses: actions/setup-dotnet@v1
14+
with:
15+
dotnet-version: 2.2.108
16+
- name: Build with dotnet
17+
run: dotnet build build.proj --configuration Release
18+
- name: Test with dotnet
19+
run: dotnet test build.proj -v n

0 commit comments

Comments
 (0)