Skip to content

Commit 5e71c13

Browse files
authored
ci: wire dotnet test into build workflow (#37)
The test project (61 tests) was merged in #36 but never hooked into CI. Add a Test step between Build and Pack so tests run on every push/PR.
1 parent 253a06b commit 5e71c13

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
- name: Build
4343
run: dotnet build E4A.PostGuard.slnx --configuration Release
4444

45+
- name: Test
46+
run: dotnet test E4A.PostGuard.slnx --configuration Release --no-build
47+
4548
- name: Pack (dry run)
4649
run: dotnet pack src/E4A.PostGuard.csproj --configuration Release --no-build --output ./artifacts
4750

0 commit comments

Comments
 (0)