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.
all.css
1 parent 5a68c76 commit 5351ee8Copy full SHA for 5351ee8
.github/workflows/ci.yml
@@ -26,7 +26,7 @@ jobs:
26
restore-keys: |
27
${{ runner.os }}-spm-xcode-${{ matrix.xcode }}-
28
- name: Build and Test
29
- run: swift test -c release
+ run: ./test.sh
30
env:
31
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
32
@@ -54,4 +54,4 @@ jobs:
54
apt-get update
55
apt-get install -y libxml2-dev
56
57
- run: swift test -c release --enable-test-discovery
test.sh
@@ -0,0 +1,7 @@
1
+#!/bin/sh
2
+
3
+set -eux
4
5
+swift test -c release --enable-test-discovery
6
+./.build/release/swift-doc generate --module-name SwiftDoc --format html Sources
7
+grep ':root' ./.build/documentation/all.css || exit 1
0 commit comments