We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948e604 commit 378f44aCopy full SHA for 378f44a
.github/workflows/test.yml
@@ -46,6 +46,27 @@ jobs:
46
command: test
47
args: --manifest-path=${{ matrix.manifest }} ${{ matrix.mode }} --examples -- --nocapture
48
49
+ clang-cl-test:
50
+ name: Test ${{ matrix.manifest }} on Windows with stable and clang-cl
51
+ runs-on: windows-latest
52
+ strategy:
53
+ fail-fast: false
54
+ matrix:
55
+ manifest: ['psm/Cargo.toml', 'Cargo.toml']
56
+ steps:
57
+ - uses: actions/checkout@v2
58
+ - uses: actions-rs/toolchain@v1
59
+ with:
60
+ toolchain: stable
61
+ profile: minimal
62
+ default: true
63
+ - uses: actions-rs/cargo@v1
64
65
+ command: test
66
+ args: --manifest-path=${{ matrix.manifest }} -- --nocapture
67
+ env:
68
+ CC: clang_cl
69
+
70
windows-gnu-test:
71
name: Test ${{ matrix.manifest }} on ${{ matrix.rust_target }} with ${{ matrix.rust_toolchain }}
72
runs-on: windows-latest
0 commit comments