From 3163c087f061b6edfbca5af078295c4c1d4e1e01 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Sat, 23 Mar 2024 18:37:08 -0400 Subject: [PATCH] Remove no-restore from build --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b46561..4f9492e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,14 +40,10 @@ jobs: uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: 8.x -# - name: Show current location -# run: pwd -# - name: Show files at current location -# run: ls -l - name: Restore dependencies run: dotnet restore src/MyWebLog.sln - name: Build (${{ matrix.dotnet-version }}) - run: dotnet build src/MyWebLog.sln --no-restore -f net${{ matrix.dotnet-version }} + run: dotnet build src/MyWebLog.sln -f net${{ matrix.dotnet-version }} - name: Test (${{ matrix.dotnet-version }}) run: dotnet run --project src/MyWebLog.Tests/MyWebLog.Tests.fsproj -f net${{ matrix.dotnet-version }}