Skip to content

Commit 48c0cf3

Browse files
Create build_master.yml
This action will build the API code everytime a commit to master is made.
1 parent 16f5f44 commit 48c0cf3

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build_master.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Build Master Branch"
2+
3+
on:
4+
push:
5+
branches:
6+
- "master"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v1
14+
15+
- name: Setup .NET Core
16+
uses: actions/setup-dotnet@v1
17+
18+
- name: Build
19+
run: dotnet build --configuration Release

0 commit comments

Comments
 (0)