Add automatic test running

This commit is contained in:
Matt Nadareski
2024-12-02 12:04:46 -05:00
parent 8bcf81fbbd
commit 027864aaa6
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