From cbbfaddb1b002cceb725dbcc8a77db7f27e0cbd0 Mon Sep 17 00:00:00 2001 From: Happyrobot33 Date: Thu, 30 May 2024 13:24:45 -0400 Subject: [PATCH] Update build-listing.yml --- .github/workflows/build-listing.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build-listing.yml b/.github/workflows/build-listing.yml index ff8c0ce..2c527fe 100644 --- a/.github/workflows/build-listing.yml +++ b/.github/workflows/build-listing.yml @@ -58,6 +58,22 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Setup .NET 8.x + uses: actions/setup-dotnet@v3 + with: + # Semantic version range syntax or exact version of a dotnet version + dotnet-version: '8.x' + + - name: Install dependencies + #restore the solution in the CodeCoverage folder + run: dotnet restore ./CodeCoverage/*.csproj + + - name: Build + run: dotnet build + + - name: Dotnet Run + run: dotnet run + - name: Setup Pages uses: actions/configure-pages@v3