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.
2 parents a29d564 + 2c39fd6 commit a399ea6Copy full SHA for a399ea6
.github/workflows/ci.yaml
@@ -33,4 +33,26 @@ jobs:
33
profile: minimal
34
35
- name: Test
36
- run: cargo test --features serde
+ run: cargo test --all-features
37
+
38
+ rustdoc:
39
+ name: Docs
40
+ runs-on: ubuntu-latest
41
42
+ env:
43
+ RUSTFLAGS: -D warnings
44
+ RUSTUP_MAX_RETRIES: 10
45
+ CARGO_NET_RETRY: 10
46
47
+ steps:
48
+ - name: Checkout repository
49
+ uses: actions/checkout@v2
50
51
+ - name: Install Rust toolchain
52
+ uses: actions-rs/toolchain@v1
53
+ with:
54
+ toolchain: nightly
55
+ profile: minimal
56
57
+ - name: Rustdoc
58
+ run: cargo doc --all-features
0 commit comments