build(deps): bump ort from 45d6a26 to 2de3406
#100
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: Lint | |
| on: | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| components: | |
| - rustfmt | |
| - clippy | |
| steps: | |
| - name: Setup | |
| uses: actions/checkout@v4 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| components: ${{ matrix.components }} | |
| - name: Format | |
| if: ${{ matrix.components == 'rustfmt' }} | |
| run: cargo fmt --all -- --check | |
| - name: Lint | |
| if: ${{ matrix.components == 'clippy' }} | |
| run: cargo clippy --all-targets --all-features -- -D warnings |