From 3d8489c4f50fb7be6b1082cb2a6f84e3b2f8e477 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Mon, 9 Aug 2021 07:15:32 -0500 Subject: [PATCH] Update and rename checks.yml to dotnet.yml --- .github/workflows/{checks.yml => dotnet.yml} | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) rename .github/workflows/{checks.yml => dotnet.yml} (64%) diff --git a/.github/workflows/checks.yml b/.github/workflows/dotnet.yml similarity index 64% rename from .github/workflows/checks.yml rename to .github/workflows/dotnet.yml index a43338e..b71974e 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/dotnet.yml @@ -1,4 +1,4 @@ -name: Checks +name: .NET on: push: @@ -7,8 +7,7 @@ on: branches: [ main ] jobs: - - build: + Build: name: Build runs-on: windows-latest @@ -31,12 +30,3 @@ jobs: - name: Test Project run: dotnet test --no-build --verbosity normal --configuration Release - - - name: Setup MSBuild - uses: microsoft/setup-msbuild@v1.0.2 - - - name: Restore Solution - run: msbuild CreamInstaller.sln /t:Restore /p:Configuration=Release - - - name: Build Solution - run: msbuild CreamInstaller.sln /t:Build /p:Configuration=Release