From 44347fe89b4c3a7c4063905bd1fcd256c3aecc43 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Sat, 1 Jul 2023 10:42:38 -0400 Subject: [PATCH] Delete test.yml --- .github/workflows/test.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index cbb0f43..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Test - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - test: - name: Test - runs-on: windows-latest - permissions: - actions: read - contents: read - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 7.x.x - - - name: Restore - run: dotnet restore - - - name: Build - run: dotnet build --no-restore --configuration Release /p:UseSharedCompilation=false - - - name: Test - run: dotnet test --no-build --verbosity normal --configuration Release