From ebb7132cd19ac86b26eec941ec3b4931889ffda2 Mon Sep 17 00:00:00 2001 From: MysticBoy Date: Mon, 8 Jun 2020 15:51:30 +0800 Subject: [PATCH] Update dotnet-core.yml --- .github/workflows/dotnet-core.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 44da34f..bc97613 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -15,12 +15,10 @@ jobs: - uses: actions/checkout@v2 - name: Setup .NET Core SDK uses: actions/setup-dotnet@v1.5.0 - with: - dotnet-version: 3.1.101 - name: Install dependencies - run: dotnet restore + run: dotnet restore ./SilkierQuartz.sln - name: Build - run: dotnet build --configuration Release + run: dotnet build ./SilkierQuartz.sln --configuration Release - name: Test run: dotnet test --no-restore --verbosity normal