Skip to content

Commit 9f9b29b

Browse files
committed
retry
1 parent c06ade7 commit 9f9b29b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
fetch-depth: 0
5252
- name: Install Swiftlint
5353
run: |
54-
brew install swiftlint@0.57.1
54+
brew install swiftlint
5555
- run: |
5656
make lint
5757
working-directory: Coder Desktop

Coder Desktop/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ LINTFLAGS :=
66
FMTFLAGS :=
77
endif
88

9-
PROJECT := Coder\ Desktop.xcodeproj
10-
SCHEME := Coder\ Desktop
9+
PROJECT := "Coder Desktop.xcodeproj"
10+
SCHEME := "Coder Desktop"
1111

1212
fmt:
1313
swiftformat $(FMTFLAGS) .
1414

1515
test:
16-
xcodebuild test \
16+
xcodebuild clean test \
1717
-project $(PROJECT) \
1818
-scheme $(SCHEME) \
1919
-testPlan $(SCHEME) \
2020
-skipPackagePluginValidation \
21-
CODE_SIGNING_REQUIRED=NO
21+
CODE_SIGNING_REQUIRED=NO | xcpretty
2222

2323
lint:
2424
swiftlint \

0 commit comments

Comments
 (0)