Skip to content

Commit 6a858fb

Browse files
committed
Split dotnet build and restore in CI pipeline
1 parent 5a29472 commit 6a858fb

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
@@ -86,8 +86,11 @@ jobs:
8686
with:
8787
dotnet-version: 6.0.x
8888

89+
- name: Restore
90+
run: dotnet restore --verbosity normal
91+
8992
- name: Build
90-
run: dotnet build
93+
run: dotnet build --no-restore
9194

9295
- name: Test
9396
run: dotnet test --no-build --verbosity normal --logger "trx;LogFileName=${{ matrix.DB }}.trx" --results-directory . ${{ matrix.TEST_PROJECT }}

0 commit comments

Comments
 (0)