We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4249b56 commit d052aa2Copy full SHA for d052aa2
.github/workflows/main.yml
@@ -32,7 +32,7 @@ jobs:
32
rust: stable-x86_64-gnu
33
steps:
34
- uses: actions/checkout@master
35
- - name: Install Rust (rustup)
+ - name: Install Rust
36
run: |
37
rustup update ${{ matrix.rust }} --no-self-update
38
rustup default ${{ matrix.rust }}
@@ -60,6 +60,19 @@ jobs:
60
rustup component add rustfmt
61
- run: cargo fmt -- --check
62
63
+ doc:
64
+ name: Check Documentation
65
+ runs-on: ubuntu-latest
66
+ steps:
67
+ - uses: actions/checkout@master
68
69
+ run: |
70
+ rustup update stable --no-self-update
71
+ rustup default stable
72
+ rustup component add rust-docs
73
+ - name: Run rustdoc
74
+ run: RUSTDOCFLAGS="-D warnings" cargo doc --verbose
75
+
76
features:
77
name: Feature check
78
runs-on: ubuntu-latest
0 commit comments