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 403963e + 77b50fb commit 14e12b6Copy full SHA for 14e12b6
.github/workflows/style.yml
@@ -35,14 +35,24 @@ jobs:
35
with:
36
command: fmt
37
args: --check
38
- - name: cargo doc
39
- uses: actions-rs/cargo@v1
40
- if: always()
41
- with:
42
- command: doc
43
- args: --no-deps --all-features
44
- name: cargo clippy
45
uses: actions-rs/clippy-check@v1
46
if: always()
47
48
token: ${{ secrets.GITHUB_TOKEN }}
+ doc:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions-rs/toolchain@v1
+ with:
+ profile: minimal
49
+ toolchain: nightly
50
+ - uses: actions/checkout@v2
51
+ - name: cargo doc
52
+ uses: actions-rs/cargo@v1
53
54
55
+ command: doc
56
+ args: --no-deps --all-features
57
+ env:
58
+ RUSTDOCFLAGS: --cfg docsrs
0 commit comments