Skip to content

revert(video): PR #121 되돌리기 — 7/23 상태로 복귀, 직립 마스코트 폐기 #323

revert(video): PR #121 되돌리기 — 7/23 상태로 복귀, 직립 마스코트 폐기

revert(video): PR #121 되돌리기 — 7/23 상태로 복귀, 직립 마스코트 폐기 #323

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
name: Lint & Test (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check .
- name: Test (pytest)
run: pytest -q
env:
NUTTI_DRY_RUN: "true"