Skip to content

Commit ab099a5

Browse files
committed
Added build_and_test.yml github workflow
1 parent 9149627 commit ab099a5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build_and_test.yml

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

0 commit comments

Comments
 (0)