Skip to content

Commit

Permalink
Ensure all step outcomes are checked
Browse files Browse the repository at this point in the history
  • Loading branch information
cmin764 committed Nov 6, 2024
1 parent da4c59e commit 2ffcc0a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ jobs:
run: |
# Create an array of step IDs and their outcomes.
declare -A steps
steps["test"]="${{ steps.test.outcome }}"
steps["format_check"]="${{ steps.format_check.outcome }}"
steps["lint"]="${{ steps.lint.outcome }}"
steps["type_check"]="${{ steps.type_check.outcome }}"
# Go through each one of those and check their outcome.
succeeded=0
Expand Down

0 comments on commit 2ffcc0a

Please sign in to comment.