Skip to content

Commit

Permalink
Merge pull request #368 from blemale/bastien.lemale/feat_github_simpl…
Browse files Browse the repository at this point in the history
…ify_required_checks

feat(github): Simplify required checks
  • Loading branch information
blemale authored Sep 29, 2023
2 parents 62d6407 + 0e662e5 commit 6a45514
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,15 @@ jobs:
if: startsWith(matrix.scala, '2')
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Final Results
needs: [build]
steps:
- run: exit 1
if: >-
${{
contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')
}}

0 comments on commit 6a45514

Please sign in to comment.