Skip to content

feat: add AI photo organizer with face recognition #34

feat: add AI photo organizer with face recognition

feat: add AI photo organizer with face recognition #34

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
lint:
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 ruff
run: pip install ruff
- name: Run lint
run: make lint