Skip to content

Commit 005a447

Browse files
committed
Add automatic testing
1 parent ca1cb5a commit 005a447

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/build_nupkg.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ jobs:
2020

2121
- name: Restore dependencies
2222
run: dotnet restore
23+
24+
- name: Build library
25+
run: dotnet build
26+
27+
- name: Run tests
28+
run: dotnet test
2329

2430
- name: Pack
2531
run: dotnet pack

.github/workflows/check_pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@ jobs:
1414
dotnet-version: 9.0.x
1515

1616
- name: Build
17-
run: dotnet build
17+
run: dotnet build
18+
19+
- name: Run tests
20+
run: dotnet test

0 commit comments

Comments
 (0)