Skip to content

Commit f8b42d8

Browse files
author
Alex J Lennon
committed
Fix test step: Add clean step before tests
1 parent ebbe4c0 commit f8b42d8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ jobs:
2626
id: git
2727
run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
2828

29-
- name: Test
29+
- name: Clean build artifacts
30+
run: rm -rf obj bin
31+
32+
- name: Run Tests
3033
run: |
3134
# Just run tests - dotnet test will build both projects as needed
3235
# The test project depends on the main project, so both get built correctly

0 commit comments

Comments
 (0)