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
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
polkadot-relay-chain: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Runtimes Repo | |
uses: actions/checkout@v3 | |
with: | |
repository: "polkadot-fellows/runtimes" | |
- name: Run Polkadot Try Runtime Checks | |
uses: "paritytech/try-runtime-gha@main" | |
with: | |
runtime-package: "polkadot-runtime" | |
# - Disable Weight Warnings because they do not apply to Relay Chains | |
# - Disable Spec Version Check because we are just running this against 'master' branch, | |
# not an actually ready to deploy runtime | |
extra-args: "--no-weight-warnings --disable-spec-version-check" | |
node-uri: "wss://polkadot-try-runtime-node.parity-chains.parity.io:443" | |
rococo-asset-hub-para-chain: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Polkadot SDK | |
uses: actions/checkout@v3 | |
with: | |
repository: "paritytech/polkadot-sdk" | |
- name: Run Rococo Asset Hub Try Runtime Checks | |
uses: "paritytech/try-runtime-gha@main" | |
with: | |
runtime-package: "asset-hub-rococo-runtime" | |
node-uri: "wss://rococo-asset-hub-rpc.polkadot.io:443" | |
# - Disable Spec Version Check because we are just running this against 'master' branch, | |
# not an actually ready to deploy runtime | |
extra-args: "--disable-spec-version-check" |