Skip to content

Commit 3e7d731

Browse files
authored
Merge pull request #134 from pytest-dev/test-status-check/1/dev
Add a summary job that checks whether all tests passed
2 parents 82e4f11 + fd567ea commit 3e7d731

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,13 @@ jobs:
6262
- name: Test with tox with forced minimum dependencies
6363
if: matrix.versions.min-deps
6464
run: tox -vv -e py,py-smtp ${{ matrix.versions.min-deps }}
65+
66+
summary:
67+
runs-on: ubuntu-latest
68+
needs:
69+
- build
70+
steps:
71+
- name: Summarize job statuses
72+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe
73+
with:
74+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)