We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b757615 commit 12e9dcfCopy full SHA for 12e9dcf
.github/workflows/build-and-test.yml
@@ -23,13 +23,10 @@ jobs:
23
dotnet-version: 6.0.x
24
25
- name: Restore dependencies
26
- run: dotnet restore
27
- working-directory: ${{ env.PROJECT_PATH }}
+ run: dotnet restore ${{ env.PROJECT_PATH }}
28
29
- name: Build
30
- run: dotnet build --no-restore
31
+ run: dotnet build ${{ env.PROJECT_PATH }} --no-restore
32
33
- name: Test
34
- run: dotnet test --no-build --verbosity normal
35
+ run: dotnet test ${{ env.PROJECT_PATH }} --no-build --verbosity normal
0 commit comments