File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,13 +35,19 @@ jobs:
3535 uses : actions/setup-dotnet@v3
3636
3737 - name : Install dependencies
38- run : dotnet restore
38+ run :
39+ cd examples
40+ dotnet restore
3941
4042 - name : Build
41- run : dotnet build --configuration Release --no-restore --property:ExposeExperimentalFeatures=false
43+ run :
44+ cd examples
45+ dotnet build --configuration Release --no-restore --property:ExposeExperimentalFeatures=false
4246
4347 - name : Test ${{ matrix.version }}
44- run : dotnet test **/bin/**/${{ matrix.version }}/*.Tests.dll --logger:"console;verbosity=detailed"
48+ run :
49+ cd examples
50+ dotnet test **/bin/**/${{ matrix.version }}/*.Tests.dll --logger:"console;verbosity=detailed"
4551
4652 build-test-experimental :
4753 defaults :
@@ -66,10 +72,16 @@ jobs:
6672 uses : actions/setup-dotnet@v3
6773
6874 - name : Install dependencies
69- run : dotnet restore
75+ run :
76+ cd examples
77+ dotnet restore
7078
7179 - name : Build
72- run : dotnet build --configuration Release --no-restore --property:ExposeExperimentalFeatures=true
80+ run :
81+ cd examples
82+ dotnet build --configuration Release --no-restore --property:ExposeExperimentalFeatures=true
7383
7484 - name : Test ${{ matrix.version }}
75- run : dotnet test **/bin/**/${{ matrix.version }}/*.Tests.dll --logger:"console;verbosity=detailed"
85+ run :
86+ cd examples
87+ dotnet test **/bin/**/${{ matrix.version }}/*.Tests.dll --logger:"console;verbosity=detailed"
You can’t perform that action at this time.
0 commit comments