Skip to content

chore(promo): 영상 mp4 git 제외 + 신규 캡처 2장 추가 #23

chore(promo): 영상 mp4 git 제외 + 신규 캡처 2장 추가

chore(promo): 영상 mp4 git 제외 + 신규 캡처 2장 추가 #23

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Lint + Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install project + dev deps
run: uv sync --extra dev
- name: Ruff lint
run: uv run ruff check .
- name: Ruff format check
run: uv run ruff format --check .
- name: Pytest
run: uv run pytest -v