Skip to content

feat: add AI photo organizer with face recognition #30

feat: add AI photo organizer with face recognition

feat: add AI photo organizer with face recognition #30

Workflow file for this run

name: Type Check
on:
pull_request:
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Python version
id: py
run: echo "version=$(grep -oP 'requires-python\s*=\s*">=\K[^"]+' pyproject.toml)" >> $GITHUB_OUTPUT
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ steps.py.outputs.version }}
- name: Install dev environment
run: make dev
- name: Run type check
run: |
source .venv/bin/activate
make typecheck