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 146ade3 + 63ea12b commit 9dfb434Copy full SHA for 9dfb434
.travis.yml
@@ -6,4 +6,15 @@ script:
6
- cd chalk-engine; RUSTC_BOOTSTRAP=1 cargo build --no-default-features
7
- cd chalk-engine; RUSTC_BOOTSTRAP=1 cargo build --all-features
8
- RUSTC_BOOTSTRAP=1 cargo test --all
9
-
+ - RUSTC_BOOTSTRAP=1 cargo doc --document-private-items
10
+deploy:
11
+ - provider: script
12
+ script: mkdir -p target/gh-pages && mv target/doc target/gh-pages/
13
+ on:
14
+ branch: master
15
+ - provider: pages
16
+ local-dir: ./target/gh-pages
17
+ skip-cleanup: true
18
+ github-token: $GITHUB_TOKEN
19
20
0 commit comments