feat: new protobuf files and match latest version of chain #71
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
on: [pull_request] | |
name: Tests | |
# Cancel in progress workflows on pull_requests. | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ☁️ Install stable | |
uses: dtolnay/rust-toolchain@stable | |
- uses: taiki-e/install-action@nextest | |
- name: 📋 Run cargo clippy | |
run: cargo clippy -- -D warnings | |
- name: 🧪 Run unit tests | |
if: always() | |
run: cargo nextest run --locked --fail-fast | |
env: | |
RUST_BACKTRACE: 1 | |
- name: 🧪 Run cosmwasm unit tests | |
if: always() | |
run: cargo nextest run --locked --fail-fast --features cosmwasm | |
env: | |
RUST_BACKTRACE: 1 | |
fmt: | |
name: fmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ☁️ Install Nightly | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- name: 📋 Format Check | |
run: cargo +nightly fmt -- --check | |