feat: add AI photo organizer with face recognition #27
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: 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 |