docs(multisig): the previous wallet is gone from the page entirely #3811
This file contains hidden or 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: [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 |