From 4615389913ec675753f1a5aca01deb3799648088 Mon Sep 17 00:00:00 2001 From: Stuart Turner Date: Wed, 3 Jan 2024 12:42:08 -0600 Subject: [PATCH] Update build pipeline --- .github/workflows/build.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c43208f2..9b1f7da5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,11 +10,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: 'csharp' - - name: Setup .NET uses: actions/setup-dotnet@v3 with: @@ -32,20 +27,9 @@ jobs: env: PLAID__CLIENTID: ${{ secrets.PLAIDCLIENTID }} PLAID__SECRET: ${{ secrets.PLAIDSECRET }} - run: dotnet test -c Release --no-build --verbosity normal + run: dotnet test -c Release --no-build --logger GitHubActions if: github.repository == 'viceroypenguin/Going.Plaid' - - name: Test Report - uses: dorny/test-reporter@v1 - if: success() || failure() # run this step even if previous step failed - with: - name: 'Test report' - path: '**/*.trx' - reporter: 'dotnet-trx' - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 - - name: Package run: dotnet pack src/Plaid/Plaid.csproj -c Release --no-build -o nupkgs if: startsWith(github.ref, 'refs/tags/')