Add automatic testing

This commit is contained in:
Matt Nadareski
2024-11-26 14:44:55 -05:00
parent ca1cb5a66e
commit 005a447e35
2 changed files with 10 additions and 1 deletions

View File

@@ -20,6 +20,12 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build library
run: dotnet build
- name: Run tests
run: dotnet test
- name: Pack
run: dotnet pack

View File

@@ -14,4 +14,7 @@ jobs:
dotnet-version: 9.0.x
- name: Build
run: dotnet build
run: dotnet build
- name: Run tests
run: dotnet test