Skip to content

Tighten Look-alikes, rework Similar sets into named albums, plain-lan… #16

Tighten Look-alikes, rework Similar sets into named albums, plain-lan…

Tighten Look-alikes, rework Similar sets into named albums, plain-lan… #16

Workflow file for this run

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