Skip to content

Merge pull request #3 from NewSee-PJ/refactor/#1-colab-구조이전 #6

Merge pull request #3 from NewSee-PJ/refactor/#1-colab-구조이전

Merge pull request #3 from NewSee-PJ/refactor/#1-colab-구조이전 #6

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