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 2bc18ed commit 57d693cCopy full SHA for 57d693c
1 file changed
.github/workflows/main.yml
@@ -2,15 +2,29 @@ name: "CI: Build Test"
2
3
on:
4
push:
5
- branches-ignore:
6
- - "releases/**"
+ branches: [ $default-branch ]
7
paths-ignore:
8
- "**.md"
9
pull_request:
+ types:
10
+ - opened
11
+ - reopened
12
+ - synchronize
13
+ - ready_for_review
14
15
16
17
jobs:
18
+ results:
19
+ if: ${{ always() }}
20
+ runs-on: ubuntu-latest
21
+ name: Build (matrix)
22
+ needs: build
23
+ steps:
24
+ - name: Check build matrix status
25
+ if: ${{ needs.build.result != 'success' }}
26
+ run: exit 1
27
+
28
build:
29
name: Build
30
strategy:
0 commit comments