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 fb3d4c0 commit 8d5aa1bCopy full SHA for 8d5aa1b
.github/workflows/ci.yml
@@ -13,15 +13,13 @@ env:
13
jobs:
14
build:
15
runs-on: ubuntu-latest
16
-
17
steps:
18
- uses: actions/checkout@v3
19
- name: Build
20
run: cargo build --all-features
21
- name: Check format
22
run: cargo fmt -- --check
23
- - name: Docs
24
- run: cargo doc --all-features
+
25
test:
26
strategy:
27
matrix:
@@ -33,3 +31,12 @@ jobs:
33
31
run: cargo test --all-features
34
32
- name: Run clippy
35
run: cargo clippy --all-targets --all-features -- --deny warnings
+ docs:
+ runs-on: ubuntu-latest
36
+ steps:
37
+ - uses: actions/checkout@v3
38
+ - run: rustup toolchain install nightly
39
+ - name: Build Docs
40
+ run: cargo +nightly doc --all-features
41
+ env:
42
+ RUSTDOCFLAGS: -Dwarnings --cfg docsrs
0 commit comments