Keep using Photos.app like you always do. Attic quietly backs up your originals and edits to an S3 bucket you control. One-way, append-only.
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make CI test job depend on lint passing

Test job now has needs: lint so it won't run if linting fails,
providing early exit on formatting/style issues.

+1
+1
.github/workflows/ci.yml
··· 22 22 run: swiftformat --lint . 23 23 24 24 test: 25 + needs: lint 25 26 runs-on: macos-15 26 27 steps: 27 28 - uses: actions/checkout@v6