Add some missing const refs to CHostAddress params #107
Workflow file for this run
This file contains 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 JSON-RPC docs | |
permissions: {} | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'tools/generate_json_rpc_docs.py' | |
- 'src/*rpc*.cpp' | |
jobs: | |
check-json-rpc-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./tools/generate_json_rpc_docs.py | |
- run: | | |
[[ -z "$(git status --porcelain=v1)" ]] && exit 0 | |
echo "Please run ./tools/generate_json_rpc_docs.py to regenerate docs/JSON-RPC.md" | |
exit 1 |