Skip to content

Commit 8f4f4e1

Browse files
Copilotdex3r
andauthored
Add build step to CI workflow (#100)
* Initial plan * Add build step to ci.yml to ensure the entire solution builds successfully Agent-Logs-Url: https://github.com/dex3r/EasySourceGenerators/sessions/1f59a137-8797-47f2-a6a3-b8297d162636 Co-authored-by: dex3r <3155725+dex3r@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: dex3r <3155725+dex3r@users.noreply.github.com>
1 parent bfb4dfc commit 8f4f4e1

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
@@ -23,8 +23,11 @@ jobs:
2323
- name: Restore dependencies
2424
run: dotnet restore EasySourceGenerators.sln
2525

26+
- name: Build
27+
run: dotnet build EasySourceGenerators.sln --no-restore
28+
2629
- name: Test
27-
run: dotnet test EasySourceGenerators.sln --no-restore --verbosity normal --collect:"XPlat Code Coverage" --logger "trx;LogFilePrefix=test-results" --results-directory ./coverage
30+
run: dotnet test EasySourceGenerators.sln --no-build --verbosity normal --collect:"XPlat Code Coverage" --logger "trx;LogFilePrefix=test-results" --results-directory ./coverage
2831

2932
- name: Upload coverage to Codecov
3033
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)