Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Commit

Permalink
ci: don't pass --all-targets when testing
Browse files Browse the repository at this point in the history
it doesn't run doctests??????
rust-lang/cargo#6669
  • Loading branch information
Sky9x committed Nov 23, 2023
1 parent 719f7d5 commit 8050abe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ jobs:
uses: dtolnay/rust-toolchain@nightly

- name: Test (MSRV)
run: cargo +${{steps.toolchain-msrv.outputs.name}} test --all-features --all-targets --workspace
run: cargo +${{steps.toolchain-msrv.outputs.name}} test --all-features --workspace
- name: Test (stable)
run: cargo +stable test --all-features --all-targets --workspace
run: cargo +stable test --all-features --workspace
- name: Test (beta)
run: cargo +beta test --all-features --all-targets --workspace
run: cargo +beta test --all-features --workspace
- name: Test (nightly)
run: cargo +nightly test --all-features --all-targets --workspace
run: cargo +nightly test --all-features --workspace

0 comments on commit 8050abe

Please sign in to comment.