Skip to content

Fix all the erros when running e2e gui demo #5

Fix all the erros when running e2e gui demo

Fix all the erros when running e2e gui demo #5

Workflow file for this run

name: Pre-Commit Check
on:
pull_request:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12' # 원하는 Python 버전
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: git ls-files | xargs pre-commit run -c .conf/.pre-commit.yaml --verbose --file