We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed40b6a + 5ace270 commit f03524bCopy full SHA for f03524b
1 file changed
.github/workflows/test.yml
@@ -10,6 +10,7 @@ on:
10
11
jobs:
12
ci:
13
+ name: CI
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
@@ -63,3 +64,16 @@ jobs:
63
64
docker compose build
65
docker compose up -d
66
docker compose down
67
+
68
+ ci-check:
69
+ name: CI Status Check
70
+ runs-on: ubuntu-latest
71
+ needs: [ci]
72
+ if: always()
73
+ steps:
74
+ - name: Some checks failed
75
+ if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')}}
76
+ run: exit 1
77
+ - name: All checks ok
78
+ if: ${{ contains(needs.*.result, 'success') }}
79
+ run: exit 0
0 commit comments