Skip to content

Feature/46 retrieve성능 향상 #78

Feature/46 retrieve성능 향상

Feature/46 retrieve성능 향상 #78

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