chore: Bump version to 3.3.0 #324
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 Checks | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, develop] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| pip install pre-commit | |
| # Install package for local hooks (pattern-summary, etc.) | |
| pip install -e .[dev,software] | |
| - name: Run pre-commit hooks | |
| run: pre-commit run --all-files --show-diff-on-failure |