meta: update python versions to 24.05 #13
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: ReadMe RPC Sync | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'doc/schemas/lightning-*.json' | |
- 'doc/*.1.md' | |
- 'doc/*.5.md' | |
- 'doc/*.8.md' | |
- 'doc/lightningd-*.7.md' | |
- 'doc/reckless.7.md' | |
workflow_dispatch: | |
jobs: | |
rdme-rpc-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install python modules | |
run: | | |
python -m pip install requests mako grpcio-tools | |
- name: Install dependencies | |
run: bash -x .github/scripts/setup.sh | |
- name: Build (including rpc .md files) | |
run: | | |
./configure --enable-debugbuild | |
make -j $(nproc) | |
- name: Set environment variable and run | |
env: | |
README_API_KEY: ${{ secrets.README_API_KEY }} | |
run: python .github/scripts/sync-rpc-cmds.py |