Skip to content

[Benchmark Backfill] Integrate Point-Bench into lmms-eval #2892

[Benchmark Backfill] Integrate Point-Bench into lmms-eval

[Benchmark Backfill] Integrate Point-Bench into lmms-eval #2892

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
permissions:
contents: write
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit (autofix)
run: pre-commit run --all-files || true
- name: Commit fixes if any
run: |
git diff --quiet && exit 0
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "style: auto-fix lint (black + isort)"
git push