From b99053cc932b819afe34e63cf14eb10c040fb905 Mon Sep 17 00:00:00 2001 From: MysticBoy Date: Mon, 8 Jun 2020 15:53:31 +0800 Subject: [PATCH] Update dotnet-core.yml --- .github/workflows/dotnet-core.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index bc97613..be72187 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -16,9 +16,9 @@ jobs: - name: Setup .NET Core SDK uses: actions/setup-dotnet@v1.5.0 - name: Install dependencies - run: dotnet restore ./SilkierQuartz.sln + run: dotnet restore ./src/SilkierQuartz/SilkierQuartz.csproj - name: Build - run: dotnet build ./SilkierQuartz.sln --configuration Release + run: dotnet build ./src/SilkierQuartz/SilkierQuartz.csproj --configuration Release - name: Test run: dotnet test --no-restore --verbosity normal