We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d7387 commit d5db8f4Copy full SHA for d5db8f4
.github/workflows/test.yml
@@ -36,7 +36,11 @@ jobs:
36
uses: Swatinem/rust-cache@v2
37
with:
38
shared-key: release-${{ matrix.target }}
39
- - name: Test
+ - if: matrix.os != 'windows-latest'
40
run: cargo test --all-features
41
env:
42
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
43
+
44
+ # Because quirks, we won't test on Windows for now. But we still should see it build
45
+ - if: matrix.os == 'windows-latest'
46
+ run: cargo build
0 commit comments