chore(deps): bump thiserror from 2.0.11 to 2.0.13 #210
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: Code Lint | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Clippy | |
| run: rustup component add clippy | |
| - name: Run Clippy | |
| run: cargo clippy --all-targets -- -D warnings # Without `--all-features` because it's not updated yet. | |
| - name: Code Spell Check | |
| uses: streetsidesoftware/cspell-action@v6 | |
| with: | |
| files: "**" | |
| config: .cspell.json | |
| strict: true | |
| verbose: true |