File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 46
46
command : test
47
47
args : --manifest-path=${{ matrix.manifest }} ${{ matrix.mode }} --examples -- --nocapture
48
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
+ with :
65
+ command : test
66
+ args : --manifest-path=${{ matrix.manifest }} -- --nocapture
67
+ env :
68
+ CC : clang_cl
69
+
49
70
windows-gnu-test :
50
71
name : Test ${{ matrix.manifest }} on ${{ matrix.rust_target }} with ${{ matrix.rust_toolchain }}
51
72
runs-on : windows-latest
You can’t perform that action at this time.
0 commit comments