From dc32d5448f24c45aed12c4ed72f859affaacc9f9 Mon Sep 17 00:00:00 2001 From: Edoardo Pirovano Date: Wed, 8 Dec 2021 14:47:42 +0000 Subject: [PATCH] Add a workflow step to do `dotnet restore` --- .github/workflows/pr-checks.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index adf567f55..4ec41bb07 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -370,6 +370,9 @@ jobs: run: | ../action/runner/dist/codeql-runner-macos init --repository $GITHUB_REPOSITORY --languages csharp --github-url $GITHUB_SERVER_URL --github-auth ${{ github.token }} + - name: Initialize dotnet + run: dotnet restore + - name: Build code shell: bash run: |