Add support for video segmentation with point prompts #629
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| name: Windows build | |
| jobs: | |
| test-windows: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: bash -el {0} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup micromamba | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-name: test-env | |
| create-args: >- | |
| python=3.12 | |
| gdal | |
| pyproj | |
| -c conda-forge | |
| cache-environment: true | |
| - name: Test GDAL installation | |
| run: | | |
| python -c "from osgeo import gdal" | |
| gdalinfo --version | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --no-cache-dir Cython | |
| pip install -r requirements.txt | |
| pip install . |