Skip to content

Commit 17ff118

Browse files
committed
Actually run doc tests in CI
rust-lang/cargo#6669
1 parent 2a1bb66 commit 17ff118

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/rust.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222
uses: actions-rs/cargo@v1
2323
with:
2424
command: build
25-
args: --all-targets
25+
args: --workspace
2626

2727
- name: Lint
2828
uses: actions-rs/cargo@v1
2929
with:
3030
command: clippy
31-
args: --all-targets -- -D warnings
31+
args: --workspace -- -D warnings
3232

3333
- name: Test
3434
uses: actions-rs/cargo@v1
3535
with:
3636
command: test
37-
args: --all-targets --verbose
37+
args: --workspace

0 commit comments

Comments
 (0)