Skip to content

feat: Email 정보 입력 기능 추가 #30

feat: Email 정보 입력 기능 추가

feat: Email 정보 입력 기능 추가 #30

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