Skip to content

chore: 초기 환경 설정 파일 추가 #4

chore: 초기 환경 설정 파일 추가

chore: 초기 환경 설정 파일 추가 #4

Workflow file for this run

# .github/workflows/ci.yml
name: Code Check (Colab용)
on:
pull_request:
push:
branches: [main]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- name: Checkout 코드
uses: actions/checkout@v3
- name: Python 3.11 설치
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: 의존성 설치
run: |
pip install -r requirements.txt
- name: 문법 체크 (예: flake8 or pytest)

Check failure on line 25 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
run: |
flake8 . || true