SendToCosmosClaim, ABCI, Bech32IBC ++ #39
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: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
working-directory: orchestrator/ | |
- name: Build Orchestrator | |
run: cd orchestrator && cargo check --all --verbose | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
working-directory: orchestrator/ | |
- name: Run Orchestrator tests | |
run: cd orchestrator && cargo test --all --release --verbose | |
rustfmt: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check code formatting | |
run: rustup component add rustfmt && cd orchestrator && cargo fmt --all -- --check | |
clippy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
working-directory: orchestrator/ | |
- name: Check for Clippy lints | |
run: rustup component add clippy && cd orchestrator && cargo clippy --all --all-targets --all-features -- -D warnings | |
audit: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
working-directory: orchestrator/ | |
- name: Run Cargo Audit | |
run: cargo install cargo-audit && cd orchestrator && cargo audit | |
cross-compile-arm64: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
working-directory: orchestrator/ | |
- name: Cross compile tests | |
run: cargo install cross && cd orchestrator && cross test --all --exclude proto_build --release --target aarch64-unknown-linux-gnu |