File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ permissions:
1414jobs :
1515 build-test-pack :
1616 runs-on : ubuntu-latest
17+ env :
18+ working-directory : ${{ github.workspace }}
1719 steps :
1820 - name : Checkout
1921 uses : actions/checkout@v4
@@ -43,12 +45,15 @@ jobs:
4345
4446 - name : Restore
4547 run : dotnet restore
48+ working-directory : ' ${{ env.working-directory }}'
4649
4750 - name : Build
4851 run : dotnet build --configuration Release --no-restore
49-
52+ working-directory : ' ${{ env.working-directory }}'
53+
5054 - name : Test
5155 run : dotnet test --configuration Release --no-build --collect:"XPlat Code Coverage"
56+ working-directory : ' ${{ env.working-directory }}'
5257
5358 - name : Pack (Pre-release or Alpha)
5459 if : ${{ steps.gitversion.outputs.PreReleaseTag != '' && github.ref_type == 'branch' && github.ref != 'refs/heads/main' }}
You can’t perform that action at this time.
0 commit comments