mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
workflows: Add a "all tests pass" check
This way we can avoid naming all the matrix tests individually in "required checks to pass before merging" in GitHub UI (which requires tweaking everytime supported Python versions change). Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
This commit is contained in:
parent
be1e83783b
commit
d7137f9343
1 changed files with 7 additions and 0 deletions
7
.github/workflows/_test.yml
vendored
7
.github/workflows/_test.yml
vendored
|
|
@ -77,6 +77,13 @@ jobs:
|
|||
run: |
|
||||
coveralls --service=github
|
||||
|
||||
all-tests-pass:
|
||||
name: All tests passed
|
||||
needs: [lint-test, tests]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "All test jobs have completed successfully."
|
||||
|
||||
coveralls-fin:
|
||||
# Always run when all 'tests' jobs have finished even if they failed
|
||||
# TODO: Replace always() with a 'at least one job succeeded' expression
|
||||
|
|
|
|||
Loading…
Reference in a new issue