From 4ba0fb08d0b30592ebe7b05813615d8a1271f8aa Mon Sep 17 00:00:00 2001 From: pointfeev Date: Tue, 17 May 2022 11:11:39 -0500 Subject: [PATCH] Delete dotnet.yml --- .github/workflows/dotnet.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml deleted file mode 100644 index 4fbf937..0000000 --- a/.github/workflows/dotnet.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: .NET - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - test: - name: Test - runs-on: windows-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Setup .NET - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 6.x.x - - - name: Restore - run: dotnet restore - - - name: Build - run: dotnet build --no-restore --configuration Release - - - name: Test - run: dotnet test --no-build --verbosity normal --configuration Release