Skip to content

Commit 162116d

Browse files
committed
Add unit tests workflow
1 parent 1a85b8c commit 162116d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/unit-tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Unit Tests
2+
3+
on:
4+
pull_request: { branches: [v2.4] }
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v1
12+
- name: Setup .NET Core
13+
uses: actions/setup-dotnet@v1
14+
with:
15+
dotnet-version: 3.1
16+
- name: Execute Tests
17+
run: dotnet test src/ -c Release

0 commit comments

Comments
 (0)