chore(deps): bump quinn-proto from 0.11.14 to 0.11.16 #2309
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: Format | |
| on: [pull_request] | |
| jobs: | |
| fmt: | |
| name: fmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| # cargo fmt does not compile anything, so there is nothing worth caching. | |
| # setup-rust-toolchain installs the rust-toolchain.toml-pinned rustfmt. | |
| - uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659 # v1.17.0 | |
| with: | |
| cache: false | |
| - name: Run Cargo Fmt | |
| run: cargo fmt --all -- --check | |
| env: | |
| RUST_BACKTRACE: 1 | |
| aggregate: | |
| name: fmt:required | |
| runs-on: ubuntu-latest | |
| if: ${{ always() }} | |
| needs: fmt | |
| steps: | |
| - name: Check fmt result | |
| if: ${{ needs.fmt.result != 'success' }} | |
| run: exit 1 |