ci: add matrix status job

This commit is contained in:
Slava 2024-10-25 08:24:07 +03:00 committed by GitHub
parent fc4ef51b81
commit 3885a8b619
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