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.
1 parent ab2a5f5 commit 8fb85d5Copy full SHA for 8fb85d5
.github/workflows/ci.yml
@@ -147,12 +147,20 @@ jobs:
147
148
- uses: Swatinem/rust-cache@v2
149
150
+ - name: test all --all-features (no trybuild)
151
+ run: |
152
+ set -euxo pipefail
153
+ cargo nextest run --workspace --all-features --exclude tests-build
154
+ cargo test --doc --workspace --all-features
155
+ if: matrix.os == 'macos-latest'
156
+
157
# Test **all** crates in the workspace with all features.
158
- name: test all --all-features
159
run: |
160
set -euxo pipefail
161
cargo nextest run --workspace --all-features
162
cargo test --doc --workspace --all-features
163
+ if: matrix.os != 'macos-latest'
164
165
test-workspace-all-features-panic-abort:
166
needs: basics
0 commit comments