chore: sync dependency versions from polkadot-docs (stable2603-1) + C… #42
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: Runtime API Calls | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'polkadot-docs/chain-interactions/runtime-api-calls/**' | |
| - '!polkadot-docs/chain-interactions/runtime-api-calls/README.md' | |
| - 'versions.yml' | |
| pull_request: | |
| paths: | |
| - 'polkadot-docs/chain-interactions/runtime-api-calls/**' | |
| - '!polkadot-docs/chain-interactions/runtime-api-calls/README.md' | |
| - 'versions.yml' | |
| workflow_dispatch: | |
| jobs: | |
| guard: | |
| if: github.repository == 'polkadot-developers/polkadot-cookbook' | |
| runs-on: ubuntu-latest | |
| outputs: | |
| should-run: ${{ steps.check.outputs.should-run }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: check | |
| uses: ./.github/actions/check-version-keys | |
| with: | |
| event-name: ${{ github.event_name }} | |
| base-sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }} | |
| head-sha: ${{ github.sha }} | |
| test: | |
| needs: guard | |
| if: needs.guard.outputs.should-run == 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Load versions | |
| id: versions | |
| run: | | |
| echo "SUBXT_CLI_VERSION=$(yq '.crates.subxt_cli.version' versions.yml)" >> $GITHUB_OUTPUT | |
| echo "SUBSTRATE_INTERFACE_VERSION=$(yq '.python_packages.substrate_interface.version' versions.yml)" >> $GITHUB_OUTPUT | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: taiki-e/install-action@v2 | |
| with: | |
| tool: subxt-cli@${{ steps.versions.outputs.SUBXT_CLI_VERSION }} | |
| - name: Cache cargo registry and build | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| polkadot-docs/chain-interactions/runtime-api-calls/tests/subxt-runtime-api-calls/target | |
| key: ${{ runner.os }}-cargo-runtime-api-calls-${{ hashFiles('polkadot-docs/chain-interactions/runtime-api-calls/tests/subxt-runtime-api-calls/Cargo.toml') }} | |
| - name: Install npm dependencies and generate PAPI descriptors | |
| run: | | |
| cd polkadot-docs/chain-interactions/runtime-api-calls | |
| npm install | |
| npx papi add polkadotTestNet -w wss://api2.zondax.ch/pas/assethub/node/rpc | |
| - name: Install Python dependencies | |
| run: pip install substrate-interface==${{ steps.versions.outputs.SUBSTRATE_INTERFACE_VERSION }} | |
| - name: Download Subxt metadata | |
| run: | | |
| cd polkadot-docs/chain-interactions/runtime-api-calls/tests/subxt-runtime-api-calls | |
| subxt metadata --url wss://api2.zondax.ch/pas/assethub/node/rpc -o polkadot_testnet_metadata.scale | |
| - name: Build Subxt project | |
| run: | | |
| cd polkadot-docs/chain-interactions/runtime-api-calls/tests/subxt-runtime-api-calls | |
| cargo build | |
| timeout-minutes: 10 | |
| - name: Run tests | |
| run: | | |
| cd polkadot-docs/chain-interactions/runtime-api-calls | |
| npm test | |
| timeout-minutes: 5 | |
| post-test: | |
| needs: [guard, test] | |
| if: github.repository == 'polkadot-developers/polkadot-cookbook' && needs.guard.outputs.should-run == 'true' && always() && github.ref == 'refs/heads/master' | |
| uses: ./.github/workflows/post-cleanup.yml | |
| with: | |
| test_result: ${{ needs.test.result }} | |
| readme_path: 'polkadot-docs/chain-interactions/runtime-api-calls/README.md' | |
| workflow_name: 'Runtime API Calls' | |
| permissions: | |
| contents: read | |
| issues: write |