Skip to content

docs: v2 API 기준 한국어 문서 및 튜토리얼 정비 #258

docs: v2 API 기준 한국어 문서 및 튜토리얼 정비

docs: v2 API 기준 한국어 문서 및 튜토리얼 정비 #258

Workflow file for this run

name: Pre-commit Black Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pre-commit:
name: Run Pre-commit Hooks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --verbose