We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25458db commit 1ce69fdCopy full SHA for 1ce69fd
1 file changed
.github/workflows/build.yml
@@ -38,10 +38,10 @@ jobs:
38
dotnet-quality: 'ga'
39
40
- name: dotnet restore
41
- run: dotnet restore
+ run: dotnet msbuild /t:restore /p:Configuration=Release Src
42
43
- name: dotnet test
44
- run: dotnet test
+ run: dotnet test Src
45
46
- name: "dotnet pack: ${{ env.VER_STR }}"
47
run: dotnet pack Src/RT.Servers.csproj --configuration Release -p:InformationalVersion="${{env.VER_STR}}" -p:VersionPrefix=${{env.VER_NUM}} -p:VersionSuffix=${{env.VER_SUF}} -p:FileVersion=${{env.VER_NUM}} -p:AssemblyVersion=${{env.VER_NUM}} -o Publish
0 commit comments