We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c87fae commit efa51f6Copy full SHA for efa51f6
.github/workflows/test-pr.yml
@@ -0,0 +1,27 @@
1
+name: Test Pico CMS pull request
2
+
3
+on:
4
+ pull_request: {}
5
6
+jobs:
7
+ test:
8
+ name: Test Pico CMS
9
+ uses: ./.github/workflows/test.yml
10
11
+ bouncer:
12
+ name: Bouncer
13
14
+ needs: test
15
+ if: ${{ always() }}
16
17
+ runs-on: ubuntu-latest
18
+ permissions: {}
19
20
+ steps:
21
+ - name: Check build matrix status
22
+ if: ${{ needs.test.result != 'success' }}
23
+ run: |
24
+ :
25
+ echo "Some tests of Pico CMS failed." >&2
26
+ echo "Please check the GitHub workflow logs for details." >&2
27
+ exit 1
.github/workflows/test.yml
@@ -6,7 +6,7 @@ on:
- 'master'
- 'pico-3.0'
tags: [ 'v*.*.*' ]
- pull_request: {}
+ workflow_call: {}
jobs:
test:
0 commit comments