chore(deps): Bump hotpath from 0.16.1 to 0.17.0 in the major group across 1 directory #28
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: Conformance Checks | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| conformance: | |
| name: Conformance Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Branch | |
| uses: actions/checkout@v6 | |
| - name: Run Clippy Checks | |
| run: cargo clippy --locked -- -W clippy::pedantic -D warnings | |
| - name: Run rustfmt Checks | |
| run: cargo fmt --all -- --check |