⬆️ Update Rust crate ndarray to 0.17.1 (#81) #79
  
    
      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: Fixups | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| fixup: | |
| name: Format and fix lints | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ssh-key: ${{ secrets.AUTOCOMMIT_KEY }} | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: check | |
| - run: cargo fix --locked --workspace | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: "🚨 Fix lints" | |
| - run: cargo fmt --all | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: "🎨 Format code" |