chore: bump soroban-sdk to 27.0.0 and close out scanner noise (#87) #130
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: "Rust: Format Check" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| - testnet | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| - testnet | |
| permissions: | |
| contents: read | |
| actions: read | |
| jobs: | |
| rustfmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| with: | |
| persist-credentials: false | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@2c7215f132e9ebf062739d9130488b56d53c060c # stable (rust 1.97.1) | |
| with: | |
| toolchain: stable | |
| components: rustfmt | |
| - name: Run rustfmt | |
| run: cargo fmt -- --check |