Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit 304aefa

Browse files
committed
Remove doc workflow and add clippy
Fixes #8
1 parent d702741 commit 304aefa

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

.github/workflows/doc.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,17 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11-
build_and_deploy:
11+
build:
1212
runs-on: windows-latest
1313

1414
steps:
1515
- uses: actions/checkout@v2
16-
with:
17-
submodules: recursive
1816

1917
- name: Setup Toolchain
2018
uses: actions-rs/toolchain@v1
2119
with:
2220
toolchain: stable
21+
components: clippy
2322
target: x86_64-pc-windows-msvc
2423

2524
- name: Build
@@ -28,14 +27,8 @@ jobs:
2827
command: build
2928
args: --verbose
3029

31-
- name: Generate docs
32-
uses: actions-rs/cargo@v1
33-
with:
34-
command: doc
35-
args: --verbose
36-
37-
- name: Deploy Docs
38-
uses: peaceiris/actions-gh-pages@v3
30+
- name: Clippy
31+
uses: actions-rs/clippy-check@v1
3932
with:
40-
github_token: ${{ secrets.GITHUB_TOKEN }}
41-
publish_dir: ./target/doc
33+
token: ${{ secrets.GITHUB_TOKEN }}
34+
args: --all-features

0 commit comments

Comments
 (0)