We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e802d64 commit 9fc3f32Copy full SHA for 9fc3f32
1 file changed
.github/workflows/dotnet-core.yml
@@ -10,6 +10,8 @@ jobs:
10
build:
11
12
runs-on: ubuntu-latest
13
+ env:
14
+ working-directory: ./Code
15
16
steps:
17
- uses: actions/checkout@v2
@@ -19,7 +21,10 @@ jobs:
19
21
dotnet-version: 3.1.301
20
22
- name: Install dependencies
23
run: dotnet restore
24
+ working-directory: ${{env.working-directory}}
25
- name: Build
26
run: dotnet build --configuration Release --no-restore
27
28
- name: Test
29
run: dotnet test --no-restore --verbosity normal
30
0 commit comments