ci: add matrix status job (#29)

adds matrix status job to decouple branch rules status check from a jobs names which are based on Nim version
This commit is contained in:
Slava 2024-10-25 09:53:40 +03:00 committed by GitHub
parent fc4ef51b81
commit 7f9622fa5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,3 +26,11 @@ jobs:
- name: Test
run: nimble test -y
status:
if: always()
needs: [test]
runs-on: ubuntu-latest
steps:
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }}
run: exit 1