Skip to content

Commit

Permalink
Update build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
viceroypenguin committed Jan 3, 2024
1 parent ec02c70 commit 4615389
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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/')
Expand Down

0 comments on commit 4615389

Please sign in to comment.