Skip to content

cosmos-sdk-proto: Remove IBC protos in favour of the ibc-proto crate #637

cosmos-sdk-proto: Remove IBC protos in favour of the ibc-proto crate

cosmos-sdk-proto: Remove IBC protos in favour of the ibc-proto crate #637

Workflow file for this run

name: cosmrs
on:
push:
branches: main
pull_request:
paths:
- ".github/workflows/cosmrs.yml"
- "cosmos-sdk-proto/**"
- "cosmrs/**"
- "Cargo.*"
defaults:
run:
working-directory: cosmrs
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
RUSTDOCFLAGS: -Dwarnings
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.72.0 # MSRV
target:
- x86_64-unknown-linux-gnu
- wasm32-unknown-unknown
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- run: cargo build --target ${{ matrix.target }} --no-default-features --release
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.72.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo test --release --no-default-features
- run: cargo test --release
- run: cargo test --release --all-features
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo doc --all-features