From 6aba15846b336b239859b18f2d7dc652a03f37d8 Mon Sep 17 00:00:00 2001 From: Chao Lu Date: Fri, 14 Oct 2022 20:00:01 -0400 Subject: [PATCH] remove duplicated unit test workflow --- .github/workflows/dotnet.yml | 36 ------------------------------------ 1 file changed, 36 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 ac17ed7..0000000 --- a/.github/workflows/dotnet.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: .NET - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Setup .NET - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 6.0.x - - name: Restore dependencies - run: dotnet restore - - name: Build - run: dotnet build --no-restore - - test: - needs: build - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Setup .NET - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 6.0.x - - name: Test - run: dotnet test --no-build --verbosity normal