Skip to content

Commit

Permalink
build: always run test reporter (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender authored Nov 18, 2023
1 parent 82e7501 commit 256922d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-indicators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
-warnAsError
- name: Test indicators
id: test-library
env:
ALPACA_KEY: ${{ secrets.ALPACA_KEY }}
ALPACA_SECRET: ${{ secrets.ALPACA_SECRET }}
Expand All @@ -52,6 +53,7 @@ jobs:
--results-directory ./test-indicators
- name: Test other items
id: test-other
run: >
dotnet test tests/other/Tests.Other.csproj
--configuration Release
Expand All @@ -62,7 +64,7 @@ jobs:
- name: Update tests summary
uses: bibipkins/[email protected]
if: github.event_name == 'pull_request'
if: ${{ github.event_name == 'pull_request' && (success() || (failure() && (steps.test-library.conclusion == 'failure' || steps.test-other.conclusion == 'failure'))) }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-title: ""
Expand Down

0 comments on commit 256922d

Please sign in to comment.