We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 070c84e commit ff17f79Copy full SHA for ff17f79
.github/workflows/CI.yml
@@ -30,7 +30,6 @@ jobs:
30
command: fmt
31
args: --all -- --check
32
33
-
34
test:
35
name: Test ${{ matrix.rust }} on ${{ matrix.os }}
36
needs: [style]
@@ -96,3 +95,23 @@ jobs:
96
95
with:
97
command: test
98
args: --benches ${{ matrix.features }}
+
99
+ doc:
100
+ name: Build docs
101
+ needs: [style, test]
102
+ runs-on: ubuntu-latest
103
+ steps:
104
+ - name: Checkout
105
+ uses: actions/checkout@v1
106
107
+ - name: Install Rust
108
+ uses: actions-rs/toolchain@v1
109
+ with:
110
+ profile: minimal
111
+ toolchain: nightly
112
+ override: true
113
114
+ - name: cargo doc
115
+ uses: actions-rs/cargo@v1
116
117
+ command: doc
0 commit comments