This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
H256 as storage keys for commitments #232
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: CI suite | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
submodules: recursive | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly-2022-10-28 | |
targets: wasm32-unknown-unknown | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: '3.9.1' | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: Build | |
run: | | |
cargo +nightly-2022-10-28 check --workspace --all-targets --all-features --verbose --locked | |
- name: Build `no-std` | |
run: | | |
cargo +nightly-2022-10-28 check -p pallet-ismp --no-default-features --target=wasm32-unknown-unknown --verbose --locked | |
cargo +nightly-2022-10-28 check -p ismp-parachain --no-default-features --target=wasm32-unknown-unknown --verbose --locked | |
cargo +nightly-2022-10-28 check -p ismp-demo --no-default-features --target=wasm32-unknown-unknown --verbose --locked | |
cargo +nightly-2022-10-28 check -p ismp-grandpa-primitives --no-default-features --target=wasm32-unknown-unknown --verbose --locked | |
cargo +nightly-2022-10-28 check -p ismp-grandpa-verifier --no-default-features --target=wasm32-unknown-unknown --verbose --locked | |
cargo +nightly-2022-10-28 check -p ismp-grandpa --no-default-features --target=wasm32-unknown-unknown --verbose --locked | |
cargo +nightly-2022-10-28 check -p ismp-evm --no-default-features --target=wasm32-unknown-unknown --verbose --locked | |
- name: Test | |
run: | | |
cargo +nightly-2022-10-28 test -p pallet-ismp --all-targets --all-features --verbose --locked | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
submodules: recursive | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: Check format | |
run: cargo +nightly fmt --all --check |