update doc #443
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.11'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: | | |
| poetry.lock | |
| - name: Install poetry | |
| run: | | |
| python -m pip install poetry | |
| - name: Init | |
| run: make init-poetry | |
| - name: CI | |
| run: make ci | |
| - name: Downloads models CPU | |
| run: poetry run homr --init --gpu no | |
| - name: Downloads models GPU | |
| run: poetry run homr --init --gpu force |