cosmos-sdk-proto: use buf's enable_type_names
feature (#490)
#628
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 |