Skip to content

Commit

Permalink
[ci] add an allgood job for easy [required] builds (#3351)
Browse files Browse the repository at this point in the history
* add an allgood job for easy [required] builds

see https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957/4?u=graingert

* Update .github/workflows/main.yml

* Update .github/workflows/main.yml

Co-authored-by: Thomas Grainger <[email protected]>

Co-authored-by: James Lamb <[email protected]>
  • Loading branch information
graingert and jameslamb authored Sep 6, 2020
1 parent aa18f84 commit 636e4ee
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,10 @@ jobs:
$env:TASK = "${{ matrix.task }}"
conda init powershell
& "$env:GITHUB_WORKSPACE/.ci/test_windows.ps1"
all-successful:
# https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957/4?u=graingert
runs-on: ubuntu-latest
needs: [test]
steps:
- name: note that all tests succeeded
run: echo "🎉"

0 comments on commit 636e4ee

Please sign in to comment.