Skip to content

docs(multisig): the previous wallet is gone from the page entirely #3811

docs(multisig): the previous wallet is gone from the page entirely

docs(multisig): the previous wallet is gone from the page entirely #3811

Workflow file for this run

on: [push, pull_request]
name: Lint and Test
concurrency:
group: lint-and-test-${{ github.sha }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- run: |
cargo +nightly fmt --all -- --check
# Check formatting for each example
for manifest in $(find examples -name Cargo.toml); do
cargo +nightly fmt --manifest-path $manifest -- --check
done
## clippy is currently broken, require big refactor
# - run: cargo clippy -- -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test -r --lib