Skip to content

Commit fecf5bf

Browse files
authored
Adding GH Action for CI build (#1)
Added initial CI build GitHub Action
1 parent 4a3af54 commit fecf5bf

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Diff for: .github/workflows/ci-build.yml

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

0 commit comments

Comments
 (0)