Split Image Processing for multiple stage processing and fix bugs (#140) #284
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: CI Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "*" # Run on all branches | |
| env: | |
| MIN_PYTHON_VERSION: 3.12 | |
| jobs: | |
| job-pre-commit-check: | |
| name: Pre-Commit Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: ${{ env.MIN_PYTHON_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| enable-cache: true | |
| - name: Install the project | |
| run: uv sync --only-dev | |
| - name: Run pre-commit | |
| run: uv run pre-commit run --all-files |