diff --git a/.github/workflows/polkadot.yml b/.github/workflows/polkadot.yml index e5ca333..f56cac0 100644 --- a/.github/workflows/polkadot.yml +++ b/.github/workflows/polkadot.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: - run-polkadot: + polkadot: runs-on: ubuntu-latest steps: - name: Checkout Runtimes Repo @@ -16,5 +16,25 @@ jobs: uses: "paritytech/try-runtime-gha@main" with: runtime-package: "polkadot-runtime" - extra-args: "--disable-idempotency-check --no-weight-warnings" + # - 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: + runs-on: ubuntu-latest + steps: + - name: Checkout Runtimes Repo + uses: actions/checkout@v3 + with: + repository: "paritytech/polkadot-sdk" + + - name: Run Polkadot Try State 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"