Tighten Look-alikes, rework Similar sets into named albums, plain-lan… #16
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install test deps | |
| # Runtime is stdlib-only; tests pull pytest + Pillow (for the L3 hash pass). | |
| run: pip install pytest "Pillow>=9" | |
| - name: Run tests | |
| run: pytest -q | |
| swift: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Swift version | |
| run: swift --version | |
| - name: Build SnapsiftCore | |
| run: swift build | |
| working-directory: app | |
| - name: Run Core tests | |
| run: swift run SnapsiftTests | |
| working-directory: app |