chore(deps): update rust crate anyhow to v1.0.100 #1337
  
    
      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 check | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| fmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - name: Setup nightly rustfmt | |
| run: | | |
| rustup set profile minimal | |
| rustup install nightly | |
| rustup override set nightly | |
| rustup component add rustfmt | |
| - name: Check formatting | |
| run: | | |
| make fmt-check |