diff options
-rw-r--r-- | .github/workflows/testsuite.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index bee7d6b4..55c8d0c6 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -93,3 +93,14 @@ jobs: if ${{ steps.tox1.outcome != 'success' && steps.tox2.outcome != 'success' }}; then exit 1 fi + + # A final step to give a simple name for required status checks. + # https://github.com/orgs/community/discussions/33579 + success: + needs: tests + runs-on: ubuntu-latest + name: Tests successful + steps: + - name: "Success" + run: | + echo Tests successful |