We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c54b7 commit f34d571Copy full SHA for f34d571
.gitlab-ci.yml
@@ -1,12 +1,17 @@
1
stages:
2
- verify
3
4
-verify_manifest:
+lint_code_and_check_manifest:
5
stage: verify
6
tags: [mac, x64, xcode]
7
before_script:
8
- xcodebuild -version
9
- swift -version
10
script:
11
+ # swift-format (https://github.com/swiftlang/swift-format) is currently installed
12
+ # via Homebrew. With Swift 6 it will be available as `swift format`.
13
+ # --recursive to look in any sub-directories
14
+ # --strict to return an error if there is a warning
15
+ - swift-format lint --recursive --strict .
16
# If the Package.swift file has an error, this command will print it
17
- swift package describe
0 commit comments