Merge pull request #1186 from nihonjinrxs/1151-ci-doc-gen
Add simple cargo doc step to CI
This commit is contained in:
commit
d24b5fb175
|
@ -136,4 +136,10 @@ jobs:
|
||||||
- run: cargo build --no-default-features --features cuda
|
- run: cargo build --no-default-features --features cuda
|
||||||
- run: cargo build --no-default-features --features cuda --target=nvptx64-nvidia-cuda
|
- run: cargo build --no-default-features --features cuda --target=nvptx64-nvidia-cuda
|
||||||
env:
|
env:
|
||||||
CUDA_ARCH: "350"
|
CUDA_ARCH: "350"
|
||||||
|
docs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Generate documentation
|
||||||
|
run: cargo doc
|
||||||
|
|
Loading…
Reference in New Issue