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 ba8f45c commit a90146aCopy full SHA for a90146a
.github/workflows/ci.yaml
@@ -85,12 +85,28 @@ jobs:
85
- run: cargo careful test -Zcareful-sanitizer --features="$FEATURES"
86
- run: cargo careful test -Zcareful-sanitizer -p ndarray-rand
87
88
+ docs:
89
+ if: ${{ github.event_name == 'merge_group' }}
90
+ runs-on: ubuntu-latest
91
+ strategy:
92
+ matrix:
93
+ rust:
94
+ - stable
95
+ name: docs/${{ matrix.rust }}
96
+ steps:
97
+ - uses: actions/checkout@v4
98
+ - uses: dtolnay/rust-toolchain@master
99
+ with:
100
+ toolchain: ${{ matrix.rust }}
101
+ - run: cargo doc
102
+
103
conclusion:
104
needs:
105
- clippy
106
- tests
107
- cross_test
108
- cargo-careful
109
+ - docs
110
if: always()
111
runs-on: ubuntu-latest
112
steps:
0 commit comments