fix workflow

This commit is contained in:
ikpil 2024-04-25 00:02:27 +09:00
parent bf6ee495d2
commit 4a80473e2f
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ jobs:
run: dotnet restore run: dotnet restore
- name: Build - name: Build
run: dotnet build -c Release --no-restore --framework net${{ matrix.dotnet-version }}.0 run: |
dotnet restore
dotnet build -c Release --no-restore --framework net${{ matrix.dotnet-version }}.0
- name: Test - name: Test
run: dotnet test -c Release --no-build --verbosity normal --framework net${{ matrix.dotnet-version }}.0 run: dotnet test -c Release --no-build --verbosity normal --framework net${{ matrix.dotnet-version }}.0