Skip to content

Init docs/blog website and Analysis blog posting for voyager #9

Init docs/blog website and Analysis blog posting for voyager

Init docs/blog website and Analysis blog posting for voyager #9

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.9' # 원하는 Python 버전
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run make pre-commit
run: make pre-commit