Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Mass-reformat with swift-format; use this file to skip it in blame.
# git config blame.ignoreRevsFile .git-blame-ignore-revs
ade410dd1add0d204eda210497e7d07497be78b4
11 changes: 11 additions & 0 deletions .github/workflows/ci-apple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,14 @@ jobs:
- uses: actions/checkout@v5
- name: Test platform ${{ matrix.destination }}
run: set -o pipefail && xcodebuild -skipMacroValidation -scheme Microcosm-Package -destination "${{ matrix.destination }}" test | xcbeautify

lint:
name: Lint
runs-on: macOS-26
timeout-minutes: 30
env:
DEVELOPER_DIR: /Applications/Xcode_26.4.app
steps:
- uses: actions/checkout@v5
- name: swift-format
run: swift format lint --recursive --configuration .swift-format --strict Sources Tests
1 change: 1 addition & 0 deletions Sources/Microcosm/MicrocosmErrors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//
import Foundation
import HTTPTypes

import struct HTTPTypes.HTTPResponse

package enum MicrocosmErrors: LocalizedError {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import AtprotoClient
import AtprotoTypes
import Foundation
import GermConvenience

import struct HTTPTypes.HTTPResponse

//https://slingshot.microcosm.blue/#tag/slingshot-specific-queries/GET/xrpc/blue.microcosm.identity.resolveMiniDoc
Expand Down