chore(cargo): 🔧 update crate dependencies #75
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: Enforce Formatting | |
| on: | |
| push: | |
| branches: | |
| - "feature/**" | |
| paths: | |
| - ".github/workflows/formatting.yaml" | |
| - "**.md" | |
| - "**.toml" | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - edited | |
| paths: | |
| - ".github/workflows/formatting.yaml" | |
| - "**.md" | |
| - "**.toml" | |
| jobs: | |
| build: | |
| name: Checking For Formatting Violations | |
| runs-on: self-hosted | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| steps: | |
| - name: Skip Duplicate Actions | |
| id: skip_check | |
| uses: fkirc/[email protected] | |
| - if: steps.skip_check.outputs.should_skip != 'true' | |
| name: Checkout | |
| uses: actions/[email protected] | |
| - if: steps.skip_check.outputs.should_skip != 'true' | |
| run: dprint check --config .dprint.json ./ --allow-no-files | |
| - if: steps.skip_check.outputs.should_skip != 'true' | |
| run: cargo fmt --all --check |