We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7015eb commit bc4c8e3Copy full SHA for bc4c8e3
.github/workflows/build-test.yml
@@ -5,6 +5,9 @@ on:
5
branches: [ "main" ]
6
pull_request:
7
8
+
9
+env:
10
+ SOLUTION_PATH: "./Mando/Mando.sln"
11
12
jobs:
13
build-and-test:
@@ -20,10 +23,10 @@ jobs:
20
23
dotnet-version: "9.0.x"
21
24
22
25
- name: "Restore dependencies"
- run: dotnet restore
26
+ run: dotnet restore ${{ env.SOLUTION_PATH }}
27
28
- name: "Build"
- run: dotnet build --no-restore
29
+ run: dotnet build ${{ env.SOLUTION_PATH }} --no-restore
30
31
- name: "Test"
- run: dotnet test --no-build --verbosity normal
32
+ run: dotnet test ${{ env.SOLUTION_PATH }} --no-build --verbosity normal
0 commit comments