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.
2 parents 3fca720 + 1c463fd commit 1c8350bCopy full SHA for 1c8350b
.github/workflows/scripts/check-docs.sh
@@ -17,6 +17,11 @@ log() { printf -- "** %s\n" "$*" >&2; }
17
error() { printf -- "** ERROR: %s\n" "$*" >&2; }
18
fatal() { error "$@"; exit 1; }
19
20
+if [ ! -f .spi.yml ]; then
21
+ log "No '.spi.yml' found, no documentation targets to check."
22
+ exit 0
23
+fi
24
+
25
log "Editing Package.swift..."
26
cat <<EOF >> "Package.swift"
27
package.dependencies.append(
0 commit comments