Skip to content

5 데이터 카탈로그 description 개선방향 #23

5 데이터 카탈로그 description 개선방향

5 데이터 카탈로그 description 개선방향 #23

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