Skip to content

Merge branch 'main' of github.com:atong01/conditional-flow-matching #90

Merge branch 'main' of github.com:atong01/conditional-flow-matching

Merge branch 'main' of github.com:atong01/conditional-flow-matching #90

# Same as `code-quality-pr.yaml` but triggered on commit to main branch
# and runs on all files (instead of only the changed ones)
name: Code Quality Main
on:
push:
branches: [main]
jobs:
code-quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run pre-commits
uses: pre-commit/[email protected]