feat: add AI photo organizer with face recognition #30
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |