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.
1 parent 75d820d commit eef1cc4Copy full SHA for eef1cc4
.github/workflows/ci.yaml
@@ -7,7 +7,22 @@ on:
7
branches: [ master ]
8
9
jobs:
10
- build-and-test:
+ # This job aggregates all matrix results and is used for a GitHub required status check.
11
+ test_results:
12
+ if: ${{ always() }}
13
+ runs-on: ubuntu-latest
14
+ name: Test Results
15
+ needs: [build_and_test]
16
+ steps:
17
+ - run: |
18
+ result="${{ needs.build_and_test.result }}"
19
+ if [[ $result == "success" || $result == "skipped" ]]; then
20
+ exit 0
21
+ else
22
+ exit 1
23
+ fi
24
+
25
+ build_and_test:
26
runs-on: ubuntu-latest
27
strategy:
28
matrix:
0 commit comments