ISMP Grandpa related changes #55
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: Rust | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
name: Check Workspace | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
submodules: recursive | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly-2022-10-28 | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- run: rustup target add wasm32-unknown-unknown | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: '3.x' | |
repo-token: ${{ secrets.GH_TOKEN }} | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_KEY }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all --benches --locked | |
check-runtime-wasm: | |
name: Check Runtime Wasm | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
submodules: recursive | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2022-10-28 | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- run: rustup target add wasm32-unknown-unknown | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_KEY }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: -p hyperbridge-runtime --no-default-features --target=wasm32-unknown-unknown --locked | |
fmt: | |
name: Cargo fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- name: Cargo fmt | |
run: cargo +nightly fmt --all --check |