diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5ee4fcdcf..f0908d855b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,10 +39,14 @@ jobs: dotnet-version: | 8.0.100 7.0.404 - - name: Restore Packages - run: dotnet restore --no-cache -f -v minimal DisCatSharp.sln + - name: Restore dependencies + run: | + dotnet restore --no-cache -f -v minimal DisCatSharp.sln + dotnet restore --no-cache -f -v minimal DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Build library run: dotnet build -c Release -v minimal --no-restore DisCatSharp.sln + - name: Build tools + run: dotnet build -c Release -v minimal --no-restore DisCatSharp.Tools/DisCatSharp.Tools.sln - name: Test library run: dotnet test -v minimal -c Release --no-restore --no-build DisCatSharp.sln pack: