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 c864270 commit 306c24eCopy full SHA for 306c24e
.github/workflows/rust.yml
@@ -36,3 +36,17 @@ jobs:
36
cargo tarpaulin --verbose --features=intel-mkl --out Xml --manifest-path=ndarray-linalg/Cargo.toml
37
- name: Upload to codecov.io
38
uses: codecov/codecov-action@v1
39
+
40
+ doc:
41
+ runs-on: ubuntu-18.04
42
+ steps:
43
+ - uses: actions/checkout@v2
44
+ - name: Generate code coverage
45
+ run: |
46
+ RUSTDOCFLAGS="--html-in-header katex-header.html" cargo doc --no-deps
47
+ mv target/doc public
48
+ - name: Deploy GitHub Pages
49
+ uses: peaceiris/actions-gh-pages@v3
50
+ with:
51
+ github_token: ${{ secrets.GITHUB_TOKEN }}
52
+ publish_dir: ./public
0 commit comments