Skip to content

Chore: update cosmwasm #781

Chore: update cosmwasm

Chore: update cosmwasm #781

Workflow file for this run

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