Skip to content

Support LoRA and gradient checkpointing #509

Support LoRA and gradient checkpointing

Support LoRA and gradient checkpointing #509

Workflow file for this run

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