feat(gl-sdk): add list_invoices, list_pays, and unified list_payments API #1084
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: Check Formatting | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| workflow_dispatch: | |
| jobs: | |
| check-formatting: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust Toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: 1.73 | |
| components: rustfmt | |
| - name: Check Rust Formatting | |
| continue-on-error: true | |
| run: | | |
| make check-rustfmt |