Catching up to upstream 2025-06-30 #35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Renderability | |
| on: | |
| pull_request: | |
| jobs: | |
| render: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| fetch-depth: 3 | |
| - name: Verify nonexistence of `rendered` and `base_ref` | |
| shell: bash | |
| run: | | |
| if [ -e rendered ]; then exit 1; fi | |
| if [ -e base_ref ]; then exit 1; fi | |
| - name: Set git config | |
| run: git config --global --add safe.directory /github/workspace | |
| - name: Set base ref | |
| run: | | |
| git show --format=%H --no-notes --no-patch "HEAD~1" -- |tee base_ref | |
| if ! ( grep -E '^[0-9a-f]{40}$' base_ref ); then exit 1; fi | |
| - name: Compile ZIPs and Zcash Protocol Specification | |
| uses: ./.github/actions/render |