We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3687d98 commit 90fa46dCopy full SHA for 90fa46d
.github/workflows/ci.yml
@@ -99,10 +99,28 @@ jobs:
99
command: "fmt"
100
args: "--all -- --check"
101
102
+ docs:
103
+ name: "Docs"
104
+ runs-on: "ubuntu-latest"
105
+ env:
106
+ RUSTDOCFLAGS: "-D warnings"
107
+ steps:
108
+ - uses: "actions/checkout@v2"
109
+ - uses: "actions-rs/toolchain@v1"
110
+ with:
111
+ profile: "minimal"
112
+ toolchain: "stable"
113
+ override: true
114
+ - uses: "actions-rs/cargo@v1"
115
116
+ command: "doc"
117
+ args: "--no-deps"
118
+
119
Verify:
120
name: "Verify"
121
runs-on: "ubuntu-latest"
122
needs:
123
+ - "docs"
124
- "fmt"
125
- "test"
126
- "lint"
0 commit comments