Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/continuous_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
with:
targets: ${{ matrix.target }}

- name: Install all-features cargo subcommand
run: cargo install cargo-all-features

- name: Checkout code
uses: actions/checkout@v4

Expand All @@ -67,6 +70,9 @@ jobs:
cargo test --workspace --locked --target ${{ matrix.target }} --all-features --all-targets
-- --nocapture --quiet

- name: Test workspace with all feature combinations
run: cargo all-features test --workspace

- name: Build workspace documentation with all features enabled
run: cargo doc --workspace --locked --target ${{ matrix.target }} --all-features

Expand Down
Loading