cosmrs: expose base::query
module and pagination types (#454)
#541
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: 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 |