Skip to content

[Feat] Add online scenario example config for Q3VL (#236) #1056

[Feat] Add online scenario example config for Q3VL (#236)

[Feat] Add online scenario example config for Q3VL (#236) #1056

Workflow file for this run

name: Pre-commit
on:
pull_request:
branches: [main, master]
push:
branches: [main, master]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install pip==26.0.1
pip install -e .
pip install pre-commit==4.2.0
- name: Run pre-commit
run: |
pre-commit run --all-files --show-diff-on-failure