You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
612 B
27 lines
612 B
name: Test Pico CMS pull request
|
|
|
|
on:
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
test:
|
|
name: Test Pico CMS
|
|
uses: ./.github/workflows/test.yml
|
|
|
|
bouncer:
|
|
name: Bouncer
|
|
|
|
needs: test
|
|
if: ${{ always() }}
|
|
|
|
runs-on: ubuntu-latest
|
|
permissions: {}
|
|
|
|
steps:
|
|
- name: Check build matrix status
|
|
if: ${{ needs.test.result != 'success' }}
|
|
run: |
|
|
:
|
|
echo "Some tests of Pico CMS failed." >&2
|
|
echo "Please check the GitHub workflow logs for details." >&2
|
|
exit 1
|
|
|