Add support for video segmentation with point prompts (#450) #258
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: docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --user --no-cache-dir Cython | |
| pip install --user -r requirements.txt -r requirements_dev.txt | |
| pip install --user . | |
| # - name: PKG-TEST | |
| # run: | | |
| # python -m unittest discover tests/ | |
| - run: python -m pip install --upgrade pip | |
| - run: pip install mkdocs-material mkdocstrings mkdocstrings-python mkdocs-git-revision-date-plugin mkdocs-jupyter ipykernel | |
| - run: mkdocs gh-deploy --force |