Skip to content

fix: 번호 출력 결과가 한 칸씩 밀림현상 #76

fix: 번호 출력 결과가 한 칸씩 밀림현상

fix: 번호 출력 결과가 한 칸씩 밀림현상 #76

Workflow file for this run

name: Execute Lint Formatting
on:
pull_request:
branches: [ "main" ]
jobs:
lintfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install black pylint
pip install -r requirements.txt
- name: Execute Lint Formatting
run: make lintfmt