feat: establish ICS-721 boilerplate, ready for new additions #2023
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
name: no_std check | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/no-std.yml | |
- Cargo.toml | |
- Cargo.lock | |
- ci/no-std-check/** | |
- ci/** | |
- ibc/** | |
- ibc-core/** | |
- ibc-apps/** | |
- ibc-data-types/** | |
- ibc-clients/** | |
- ibc-primitives/** | |
push: | |
branches: main | |
paths: | |
- .github/workflows/no-std.yml | |
- Cargo.toml | |
- Cargo.lock | |
- ci/no-std-check/** | |
- ci/** | |
- ibc/** | |
- ibc-core/** | |
- ibc-apps/** | |
- ibc-data-types/** | |
- ibc-clients/** | |
- ibc-primitives/** | |
jobs: | |
check-no-std-panic-conflict: | |
name: Check no_std panic conflict | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- run: | | |
cd ci/no-std-check | |
make check-panic-conflict | |
check-substrate: | |
name: Check no_std substrate support | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
target: wasm32-unknown-unknown | |
override: true | |
- run: | | |
cd ci/no-std-check | |
make check-substrate |