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.

Add swiftlint and swiftformat checks to release workflow

+6
+6
.github/workflows/release.yml
··· 14 14 steps: 15 15 - uses: actions/checkout@v6 16 16 17 + - name: SwiftLint 18 + run: swiftlint lint --quiet 19 + 20 + - name: SwiftFormat check 21 + run: swiftformat --lint . 22 + 17 23 - name: Run tests 18 24 run: swift test 19 25