Skip to content

Update download_checkpoints.sh to fetch checkpoints from a new URL an… #14

Update download_checkpoints.sh to fetch checkpoints from a new URL an…

Update download_checkpoints.sh to fetch checkpoints from a new URL an… #14

Workflow file for this run

name: Pre-commit
on: [push]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies and run pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
pre-commit install
pre-commit run --all-files