[ZIP 230, ZIP 246] Fixing rendering issue, and adding transparent_sighash_infos_digest
#302
Workflow file for this run
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/[email protected] | |
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 |