chore: migrate dev-dependencies to dependency-groups and remove encod… #48
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: pre-commit-main | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| inputs: | |
| debug_enabled: | |
| type: boolean | |
| description: "Run with tmate debugging enabled" | |
| required: false | |
| default: false | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pre-commit-all-files: | |
| uses: Komorebi-AI/github-actions/.github/workflows/pre-commit-uv.yml@main | |
| with: | |
| uv-version: 0.8.0 | |
| debug-enabled: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} |