We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1dcee commit b9f893aCopy full SHA for b9f893a
1 file changed
.github/workflows/swiftui-auth.yml
@@ -22,6 +22,25 @@ permissions:
22
contents: read
23
24
jobs:
25
+ format-check:
26
+ name: Swift Format Check
27
+ runs-on: macos-26
28
+ timeout-minutes: 10
29
+ steps:
30
+ - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
31
+
32
+ - name: Install swiftformat
33
+ run: brew install swiftformat
34
35
+ - name: Check FirebaseSwiftUI formatting
36
+ run: swiftformat --lint ./FirebaseSwiftUI
37
38
+ - name: Check SwiftUI Example formatting
39
+ run: swiftformat --lint ./samples/swiftui/FirebaseSwiftUIExample
40
41
+ - name: Check Package.swift formatting
42
+ run: swiftformat --lint ./Package.swift
43
44
# Package Unit Tests (standalone, no emulator needed)
45
unit-tests:
46
name: Package Unit Tests
0 commit comments