Bump version to 0.8.0 #57
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: Run pre-commit hooks | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ | |
| main | |
| ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # Fallback to plain text output for reducing docker output | |
| # https://github.com/docker/compose/issues/8753#issuecomment-934473781 | |
| BUILDKIT_PROGRESS: plain | |
| # Disable PTY for Invoke to avoid issues in CI environments and reduce output | |
| INVOKE_PTY: false | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.12" | |
| - "3.13" | |
| - "3.14" | |
| django-version: | |
| - ">=5.2,<5.3" | |
| - ">=6.0,<6.3" | |
| steps: | |
| - name: Run | |
| uses: saritasa-nest/saritasa-python-open-source-boilerplate/.github/actions/run_pre_commit@main | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| env: | |
| DJANGO_VERSION: ${{ matrix.django-version }} |