chore(deps): bump wasm-minimal-protocol from 8b1a7f4 to 4d10ad3 in the rust group
#251
Workflow file for this run
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
| name: Formatting | |
| on: | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| check-rs-format: | |
| name: Check Formatting (Rust) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| targets: wasm32-unknown-unknown | |
| - name: rustfmt | |
| run: cargo fmt --check | |
| check-prettier-format: | |
| name: Check Formatting (Prettier) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check formatting with Prettier | |
| uses: Nerixyz/actionsx-prettier@v3-adj+prettier3.6.2 | |
| with: | |
| args: -c . |