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.
style.yml
1 parent 403963e commit c0ab284Copy full SHA for c0ab284
.github/workflows/style.yml
@@ -35,14 +35,25 @@ 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
+ components: rustfmt, clippy
51
+ - uses: actions/checkout@v2
52
+ - name: cargo doc
53
+ uses: actions-rs/cargo@v1
54
55
56
+ command: doc
57
+ args: --no-deps --all-features
58
+ env:
59
+ RUSTDOCFLAGS: --cfg docsrs
0 commit comments