From 5c1b15bc0e8057a9835ce322464dd933defea65c Mon Sep 17 00:00:00 2001 From: ikpil Date: Mon, 18 Sep 2023 23:11:56 +0900 Subject: [PATCH] feat: release test --- .github/workflows/dotnet.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9ea4ed3..fd47493 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -27,12 +27,12 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: ${{ matrix.dotnet-version }} - + - name: Restore dependencies run: dotnet restore - + - name: Build - run: dotnet build --no-restore - + run: dotnet build --configuration Release --no-restore + - name: Test run: dotnet test --no-build --verbosity normal