Skip to content

Bump @polkadot/api from 11.3.1 to 12.2.3 in /frontend #175

Bump @polkadot/api from 11.3.1 to 12.2.3 in /frontend

Bump @polkadot/api from 11.3.1 to 12.2.3 in /frontend #175

Workflow file for this run

name: fmt
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
fmt:
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: contracts
steps:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- uses: actions/checkout@v4
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Run fmt
run: cargo +nightly fmt --verbose -- --check