gha: Add a final collection job

This depends on the matrix, but has an easy name that we can hang
other things off of.
This commit is contained in:
Christian Decker
2023-01-01 16:37:34 +01:00
parent 7d25585273
commit 7f8d4356ed

View File

@@ -97,3 +97,16 @@ jobs:
export CLN_PATH=${{ github.workspace }}/lightning
pip3 install --user -U virtualenv pip > /dev/null
python3 .ci/test.py
gather:
# A dummy task that depends on the full matrix of tests, and
# signals successful completion. Used for the PR status to pass
# before merging.
name: CI completion
runs-on: ubuntu-20.04
needs:
- build-and-test
steps:
- name: Complete
run: |
echo CI completed successfully