Optimize finetune & make unipc default sampler #510
This file contains 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 ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: | | |
pip3 install --upgrade pip && \ | |
pip3 install pdm && \ | |
pdm sync | |
- name: Lint with black and isort | |
run: | | |
pdm run black . --check | |
pdm run isort . --check | |
docs: | |
runs-on: ubuntu-latest | |
# Only run this job if the lint job is successful and the current branch is main | |
needs: lint | |
if: ${{ github.ref == 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
pip3 install --upgrade pip && \ | |
pip3 install pdm && \ | |
pdm sync | |
- name: Build docs | |
run: pdm run sphinx-build docs docs/_build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_build |