Skip to content

feat: migrate applications module under the ibc crate into ibc-apps #1871

feat: migrate applications module under the ibc crate into ibc-apps

feat: migrate applications module under the ibc crate into ibc-apps #1871

Workflow file for this run

name: no_std check
on:
pull_request:
paths:
- .github/workflows/no-std.yml
- Cargo.toml
- Cargo.lock
- ci/no-std-check/**
- crates/**
push:
branches: main
paths:
- .github/workflows/no-std.yml
- Cargo.toml
- Cargo.lock
- ci/no-std-check/**
- crates/**
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