Chore: update cosmwasm #782
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: Basic | |
# 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 | |
with: | |
target: wasm32-unknown-unknown | |
- name: π Setup PAT | |
run: sed -i 's|ssh://[email protected]/sedaprotocol/vrf-rs.git|https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/sedaprotocol/vrf-rs.git|' Cargo.toml | |
- name: π Run cargo clippy | |
run: cargo clippy -- -D warnings | |
- name: π§ͺ Run unit tests | |
if: always() | |
run: cargo test --locked | |
env: | |
RUST_BACKTRACE: 1 | |
- name: π Generate Schema | |
if: always() | |
run: cargo schema --locked | |
- name: βοΈ Schema Changes | |
# fails if any changes not committed | |
run: git diff --exit-code schema | |
- name: π¦Ύ Compile WASM contract | |
run: cargo wasm | |
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 | |