Asset hubs - Add all assets in pool with native to XcmPaymentApi #887
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
# Various checks to verify the cargo workspace and its crates are correctly configured. | |
name: "Workspace features" | |
on: | |
push: | |
branches: ["main", "release-*"] | |
pull_request: | |
workflow_dispatch: | |
# cancel previous runs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
name: Check workspace features | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Dont clone historic commits. | |
- name: Set rust version via common env file | |
run: cat .github/env >> $GITHUB_ENV | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "${{env.RUST_STABLE_VERSION}}" | |
- name: Install Zepter | |
run: cargo install --locked -q zepter && zepter --version | |
- name: Check features | |
run: | | |
zepter run check | |
# We will add this to the config file once its stabilized. Just run it in the CI for now. | |
zepter transpose dep lift-to-workspace 'regex:.*' |