From fc8fb91b06703184d1c83a71455e563240a800c1 Mon Sep 17 00:00:00 2001 From: tintheanh Date: Thu, 21 Sep 2023 13:10:54 -0700 Subject: [PATCH] test job is working --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 344391e..2904dd5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,7 +3,7 @@ on: [push] jobs: - build: + buildAndTest: runs-on: windows-latest steps: - uses: actions/checkout@v4 @@ -15,4 +15,4 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore - name: Test - run: dotnet test --no-restore + run: dotnet test --no-restore --verbosity normal