We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06ade7 commit 9f9b29bCopy full SHA for 9f9b29b
.github/workflows/ci.yml
@@ -51,7 +51,7 @@ jobs:
51
fetch-depth: 0
52
- name: Install Swiftlint
53
run: |
54
- brew install swiftlint@0.57.1
+ brew install swiftlint
55
- run: |
56
make lint
57
working-directory: Coder Desktop
Coder Desktop/Makefile
@@ -6,19 +6,19 @@ LINTFLAGS :=
6
FMTFLAGS :=
7
endif
8
9
-PROJECT := Coder\ Desktop.xcodeproj
10
-SCHEME := Coder\ Desktop
+PROJECT := "Coder Desktop.xcodeproj"
+SCHEME := "Coder Desktop"
11
12
fmt:
13
swiftformat $(FMTFLAGS) .
14
15
test:
16
- xcodebuild test \
+ xcodebuild clean test \
17
-project $(PROJECT) \
18
-scheme $(SCHEME) \
19
-testPlan $(SCHEME) \
20
-skipPackagePluginValidation \
21
- CODE_SIGNING_REQUIRED=NO
+ CODE_SIGNING_REQUIRED=NO | xcpretty
22
23
lint:
24
swiftlint \
0 commit comments