From afadaaf087ca9e29ee33ae59cac6f101f9e018b4 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Sat, 23 Mar 2024 18:29:24 -0400 Subject: [PATCH] Add check out step --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a87cd0f..e99213c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,14 +34,16 @@ jobs: - 29015:29015 steps: + - name: Check Out Code + uses: actions/cehckout@v4 - name: Setup .NET Core SDK 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: 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 }})