From a4fdea927d7ddc5f84d8ce8f00aad91020730c16 Mon Sep 17 00:00:00 2001 From: "Ryan B. Harvey" Date: Mon, 12 Dec 2022 04:21:23 +0000 Subject: [PATCH] Add simple cargo doc step to CI --- .github/workflows/nalgebra-ci-build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nalgebra-ci-build.yml b/.github/workflows/nalgebra-ci-build.yml index d1a6c923..8b96d264 100644 --- a/.github/workflows/nalgebra-ci-build.yml +++ b/.github/workflows/nalgebra-ci-build.yml @@ -136,4 +136,10 @@ jobs: - run: cargo build --no-default-features --features cuda - run: cargo build --no-default-features --features cuda --target=nvptx64-nvidia-cuda env: - CUDA_ARCH: "350" \ No newline at end of file + CUDA_ARCH: "350" + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Generate documentation + run: cargo doc