From ddaabb6470b138a096f0b793ba552e50ac1e129a Mon Sep 17 00:00:00 2001 From: Nicolas Constant Date: Sun, 28 Jun 2020 23:52:59 -0400 Subject: [PATCH] added working-directory to build steps --- .github/workflows/dotnet-core.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 129f556..c6b7818 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -21,7 +21,10 @@ jobs: dotnet-version: 3.1.101 - name: Install dependencies run: dotnet restore + working-directory: ${{env.working-directory}} - name: Build run: dotnet build --configuration Release --no-restore + working-directory: ${{env.working-directory}} - name: Test run: dotnet test --no-restore --verbosity normal + working-directory: ${{env.working-directory}}