From c3665b9f3b3782f0f5fa4d7e17654e4655458b08 Mon Sep 17 00:00:00 2001 From: DTieman Date: Wed, 22 Mar 2023 21:07:31 +0100 Subject: [PATCH] 2nd workflow attempt --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df2c263..eaccf07 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,9 @@ on: concurrency: group: mau cancel-in-progress: true + +env: + DOTNET_INSTALL_DIR: "./.dotnet" jobs: build: @@ -29,12 +32,12 @@ jobs: with: fetch-depth: 0 - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@main with: dotnet-version: 7.0.x - name: Install dependencies run: dotnet restore - name: Build - run: dotnet build + run: dotnet build --configuration Release --no-restore - name: Test - run: dotnet test \ No newline at end of file + run: dotnet test --no-restore --verbosity normal \ No newline at end of file